Files
sell/middlelayer/__cms/Contentful_Markdown.ts

15 lines
429 B
TypeScript

import type { CF_ContentType } from "./Contentful_ContentType.enum";
import type { CF_ComponentLayout } from "./Contentful_Layout";
import type { TextAlignment } from "./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;
};