1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-05-18 14:44:25 -04:00
Files
jarv.is/api/types/projects.d.ts
T
2021-06-13 08:24:27 -04:00

16 lines
301 B
TypeScript

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;
};