1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-26 15:01:17 -04:00

clean up type declarations

This commit is contained in:
2021-06-13 08:24:27 -04:00
parent e692d07031
commit f35bd7aac2
15 changed files with 161 additions and 179 deletions

15
api/types/projects.d.ts vendored Normal file
View File

@@ -0,0 +1,15 @@
type Repository = {
name: string;
url: string;
description: string;
primaryLanguage?: {
color: string;
name: string;
};
stargazerCount: number;
stargazerCount_pretty?: string;
forkCount: number;
forkCount_pretty?: string;
pushedAt: string;
pushedAt_relative?: string;
};