mirror of https://github.com/sgoudham/website.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
310 B
TypeScript
13 lines
310 B
TypeScript
type RepositoryData = {
|
|
name: string;
|
|
description: string | null;
|
|
html_url: string;
|
|
size?: number;
|
|
archived?: boolean;
|
|
fork: boolean;
|
|
stargazers_count?: number;
|
|
open_issues_count?: number;
|
|
created_at: string | null | undefined;
|
|
updated_at: string | null | undefined;
|
|
topics?: string[];
|
|
}; |