1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-04-19 05:35:31 -04:00
Files
jarv.is/types/repository.d.ts
T
2022-04-30 18:01:33 -04:00

13 lines
200 B
TypeScript

export type Repository = {
name: string;
url: string;
description?: string;
language?: {
name: string;
color?: string;
};
stars?: number;
forks?: number;
updatedAt: string;
};