1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-02-02 15:45:18 -05:00
Files
jarv.is/api/types/projects.d.ts

12 lines
239 B
TypeScript

import type { Language } from "@octokit/graphql-schema";
export type Repository = {
name: string;
url: string;
description: string;
primaryLanguage?: Language;
stargazerCount: number;
forkCount: number;
pushedAt: string;
};