Files
agent/packages/uhk-web/src/app/models/uhk-contributor.ts
dgyimesi 2c041b64ff feat: Redesign About page. (#899)
* Redesign About page.

* feat: migrate About page to ngrx.

* Fix import relative path; order contributors by the number of contributions.
2019-01-27 00:43:57 +01:00

8 lines
146 B
TypeScript

export interface UHKContributor {
login: string;
avatar_url: string;
html_url: string;
contributions: number;
avatar: Blob;
}