// Generated by EmDash on dev server start // Do not edit manually /// import type { ContentBylineCredit, PortableTextBlock } from "emdash"; export interface Page { id: string; slug: string | null; status: string; title: string; content?: PortableTextBlock[]; createdAt: Date; updatedAt: Date; publishedAt: Date | null; bylines?: ContentBylineCredit[]; } declare module "emdash" { interface EmDashCollections { pages: Page; } }