15 lines
451 B
TypeScript
15 lines
451 B
TypeScript
import type { CF_ContentType } from "src/@types/Contentful_ContentType.enum";
|
|
import type { CF_ComponentLayout } from "src/@types/Contentful_Layout";
|
|
import type { TextAlignment } from "src/@types/TextAlignment";
|
|
|
|
export interface CF_Markdown {
|
|
name: string,
|
|
content: string,
|
|
layout: CF_ComponentLayout
|
|
alignment: TextAlignment
|
|
}
|
|
|
|
export type CF_MarkdownSkeleton = {
|
|
contentTypeId: CF_ContentType.markdown
|
|
fields: CF_Markdown
|
|
} |