mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 21:02:13 +01:00
asd
This commit is contained in:
5
types/contentTable.ts
Normal file
5
types/contentTable.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
export interface IContentTableEntry {
|
||||
anchor: string;
|
||||
title: string;
|
||||
}
|
||||
@@ -1,8 +1,11 @@
|
||||
import { IContentTableEntry } from "./contentTable";
|
||||
|
||||
export interface PostArticle {
|
||||
name: string;
|
||||
title: string;
|
||||
name?: string;
|
||||
markdown: string;
|
||||
introduction: string;
|
||||
categoryId: number;
|
||||
contentTable: IContentTableEntry[]
|
||||
imageId?: number;
|
||||
}
|
||||
Reference in New Issue
Block a user