import { AptlyBaseSchema } from './extends.js'; import { AptlyMediaSrcSchema } from './media.js'; import { AptlyUserSchema } from './user.js'; export type AptlyNews = AptlyNewsSchema; export interface AptlyNewsSchema extends AptlyBaseSchema { media: AptlyMediaSrcSchema | null; embed: string; description: string; published: boolean; publishAt: DATE; createdBy: ID | AptlyUserSchema; }