import { QueryPage } from "./Model"; export type JournalPage = { type: JournalPageType; } & QueryPage; export enum JournalPageType { NORMAL = "NORMAL", PREVIEW = "PREVIEW" }