Files
explainegy-nextjs/types/postData.ts
Janis 2c0207dc65 asd
2023-01-22 17:04:42 +01:00

12 lines
244 B
TypeScript

import { IContentTableEntry } from "./contentTable";
export interface PostArticle {
title: string;
name?: string;
markdown: string;
introduction: string;
categoryId: number;
contentTable: IContentTableEntry[]
imageId?: number;
}