1
0
Fork 0
blog/src/@types/GitHub.d.ts

26 lines
317 B
TypeScript
Raw Normal View History

2019-10-16 01:45:30 +02:00
export interface GitHubRepo {
name: string
url: string
owner: {
login: string
}
object: {
id: string
text: string
}
}
export interface GitHub {
github: {
viewer: {
repositories: {
edges: [
{
node: GitHubRepo
}
]
}
}
}
}