togezr
Version:
Better together_
17 lines • 386 B
TypeScript
export interface IGitHubUser {
id: string;
login: string;
name: string;
bio: string;
company: string;
type: 'User' | 'Organization';
public_repos: number;
public_gists: number;
avatar_url: string;
email: string;
location: string;
hireable: boolean;
followers: number;
following: number;
}
//# sourceMappingURL=IGitHubUser.d.ts.map