import { TPost, TPostComment } from '@cromwell/core'; import { BasePageEntity } from './base-page.entity'; import { PostMeta } from './meta/post-meta.entity'; import { Tag } from './tag.entity'; import { User } from './user.entity'; export declare class Post extends BasePageEntity implements TPost { title?: string | null; author?: User | null; authorId?: number | null; content?: string | null; delta?: string | null; excerpt?: string | null; mainImage?: string | null; readTime?: string | null; tags?: Tag[] | null; published?: boolean | null; publishDate?: Date | null; comments?: TPostComment[]; featured?: boolean | null; metaRecords?: PostMeta[]; } //# sourceMappingURL=post.entity.d.ts.map