api / src /types.ts
RohanVashisht's picture
fixed types and added readme to search
9013903
raw
history blame
459 Bytes
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;
}