mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 13:56:22 -04:00
12 lines
239 B
TypeScript
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;
|
|
};
|