fix: test case

Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
Innei
2023-06-17 09:38:52 +08:00
parent 06e21ecdf1
commit fbcf2cc53f
4 changed files with 27 additions and 3 deletions

View File

@@ -12,6 +12,14 @@ export interface AggregateRoot {
url: Url
categories: CategoryModel[]
pageMeta: Pick<PageModel, 'title' | 'id' | 'slug' | 'order'>[] | null
/**
* @available 4.2.2
*/
latestNoteId: { id: string; nid: number }
}
export interface AggregateRootWithTheme<Theme = unknown> extends AggregateRoot {
theme?: Theme
}
export interface Url {