portfolio/src/types/repo.ts

12 lines
187 B
TypeScript

declare type Repo = {
name: string
full_name: string
description: string
html_url: string
homepage: string
stargazers_count: number
pushed_at: string
}
export default Repo