File size: 459 Bytes
9013903
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export interface Repo {
  avatar_url: string;
  name: string;
  full_name: string;
  created_at: string;
  description: string;
  default_branch: string;
  open_issues: number;
  stargazers_count: number;
  forks_count: number;
  watchers_count: number;
  tags_url: string;
  license: string;
  topics: string[] | null;
  size: number;
  fork: boolean;
  updated_at: string;
  has_build_zig: boolean;
  has_build_zig_zon: boolean;
  readme_content: string;
}