2020-05-19 14:41:16 +03:00

12 lines
198 B
TypeScript

export type ContributorInfo = {
login: string
name: string
avatarUrl: string
websiteUrl: string
}
export type DataJSON = {
contributors: ContributorInfo[]
coreTeam: ContributorInfo[]
}