Type alias Post

Post: {
    content: string;
    id?: number;
    status: string;
    tags: string[];
    title: string;
    [key: string]: any;
}

Type declaration

  • [key: string]: any
  • content: string
  • Optional id?: number
  • status: string
  • tags: string[]
  • title: string

Generated using TypeDoc