1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-19 17:05:32 -04:00

add @octokit/graphql-schema types

This commit is contained in:
2022-06-26 18:12:13 -04:00
parent ffe856012f
commit 7f485959df
6 changed files with 98 additions and 72 deletions

12
types/project.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
export type Project = {
name: string;
url: string;
description?: string;
language?: {
name: string;
color?: string;
};
stars?: number;
forks?: number;
updatedAt: string;
};