import { IContentType } from "../ContentTypes/ContentType.interface" import { PageId } from "../ContentTypes/PageId/PageId" export interface IBlock { readonly raw:any readonly object:string readonly id:string readonly parent:PageId readonly createdTime:Date readonly lastEditedTime:Date readonly createdBy:string readonly lastEditedBy:string readonly archived: boolean readonly type:string readonly content: unknown readonly children: IBlock[] prevBlock:IBlock | null nextBlock:IBlock | null toHTML(): string }