24 lines
406 B
TypeScript
24 lines
406 B
TypeScript
export interface ProjectList {
|
|
projects: Project[];
|
|
diaries: Diary[];
|
|
}
|
|
|
|
export interface Project {
|
|
name: string;
|
|
desc: string[];
|
|
short_desc: string;
|
|
more?: string;
|
|
repo?: string;
|
|
}
|
|
|
|
export interface Diary {
|
|
name: string;
|
|
desc: string[];
|
|
short_desc: string;
|
|
more?: string;
|
|
repo?: string;
|
|
entries: {
|
|
title: string;
|
|
path: string;
|
|
}[];
|
|
} |