1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 22:30:29 -04:00
jarv.is/api/types/projects.d.ts

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