frontpage/lib/projects/types.ts

7 lines
123 B
TypeScript
Raw Normal View History

2021-12-17 20:02:42 +01:00
export interface Project {
name: string;
desc: string[];
short: string;
more?: string;
repo?: string;
}