* Redesign About page. * feat: migrate About page to ngrx. * Fix import relative path; order contributors by the number of contributions.
8 lines
146 B
TypeScript
8 lines
146 B
TypeScript
export interface UHKContributor {
|
|
login: string;
|
|
avatar_url: string;
|
|
html_url: string;
|
|
contributions: number;
|
|
avatar: Blob;
|
|
}
|