Support diaries (kinda)
This commit is contained in:
@ -1,7 +1,24 @@
|
||||
export interface ProjectList {
|
||||
projects: Project[];
|
||||
diaries: Diary[];
|
||||
}
|
||||
|
||||
export interface Project {
|
||||
name: string;
|
||||
desc: string[];
|
||||
short: 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;
|
||||
}[];
|
||||
}
|
Reference in New Issue
Block a user