1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-28 04:50:28 -04:00
jarv.is/api/types/projects.d.ts

13 lines
208 B
TypeScript

type Repository = {
name: string;
url: string;
description: string;
primaryLanguage?: {
color: string;
name: string;
};
stargazerCount: number;
forkCount: number;
pushedAt: string;
};