News.ts 201 B

123456789
  1. export type NewsModel = {
  2. title: string;
  3. markdown: string;
  4. status: "draft" | "published" | "archived";
  5. showToNewUsers: boolean;
  6. createdBy: string;
  7. createdAt: number;
  8. documentVersion: number;
  9. };