MCPcopy Create free account
hub / github.com/KartikLabhshetwar/foliox / NormalizedProfile

Interface NormalizedProfile

types/github.ts:200–221  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

198}
199
200export interface NormalizedProfile {
201 username: string;
202 name: string | null;
203 bio: string | null;
204 avatar_url: string;
205 location: string | null;
206 email: string | null;
207 website: string | null;
208 twitter_username: string | null;
209 linkedin_url?: string | null;
210 instagram_url?: string | null;
211 company: string | null;
212 followers: number;
213 following: number;
214 public_repos: number;
215 created_at: string;
216 updated_at?: string;
217 cached?: boolean;
218 about?: AboutData | null;
219 seo?: SEOData | null;
220 metrics?: GitHubMetrics | null;
221}
222
223export interface AboutData {
224 summary: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected