mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 15:48:31 -04:00
13 lines
197 B
TypeScript
13 lines
197 B
TypeScript
export type Project = {
|
|
name: string;
|
|
url: string;
|
|
description?: string;
|
|
language?: {
|
|
name: string;
|
|
color?: string;
|
|
};
|
|
stars?: number;
|
|
forks?: number;
|
|
updatedAt: string;
|
|
};
|