frontpage/lib/projects/types.ts
2021-12-17 20:02:42 +01:00

7 lines
123 B
TypeScript

export interface Project {
name: string;
desc: string[];
short: string;
more?: string;
repo?: string;
}