12 lines
198 B
TypeScript
12 lines
198 B
TypeScript
export type ContributorInfo = {
|
|
login: string
|
|
name: string
|
|
avatarUrl: string
|
|
websiteUrl: string
|
|
}
|
|
|
|
export type DataJSON = {
|
|
contributors: ContributorInfo[]
|
|
coreTeam: ContributorInfo[]
|
|
}
|