frontpage/lib/projects/types.ts

24 lines
406 B
TypeScript
Raw Normal View History

2022-03-15 17:21:10 +01:00
export interface ProjectList {
projects: Project[];
diaries: Diary[];
}
2021-12-17 20:02:42 +01:00
export interface Project {
name: string;
desc: string[];
2022-03-15 17:21:10 +01:00
short_desc: string;
2021-12-17 20:02:42 +01:00
more?: string;
repo?: string;
2022-03-15 17:21:10 +01:00
}
export interface Diary {
name: string;
desc: string[];
short_desc: string;
more?: string;
repo?: string;
entries: {
title: string;
path: string;
}[];
2021-12-17 20:02:42 +01:00
}