update Page obj

This commit is contained in:
Timi
2025-12-08 17:14:00 +08:00
parent a25c38d50d
commit 71fc077726
5 changed files with 34 additions and 18 deletions

View File

@ -0,0 +1,11 @@
import { QueryPage } from "./Model";
export type JournalPage = {
type: JournalPageType;
} & QueryPage;
export enum JournalPageType {
NORMAL = "NORMAL",
PREVIEW = "PREVIEW"
}