14 lines
315 B
TypeScript
14 lines
315 B
TypeScript
import type { CF_ContentType } from "./Contentful_ContentType.enum";
|
|
import type { CF_ComponentLayout } from "./Contentful_Layout";
|
|
|
|
export interface CF_HTML {
|
|
id: string;
|
|
html: string;
|
|
layout: CF_ComponentLayout;
|
|
}
|
|
|
|
export type CF_HTMLSkeleton = {
|
|
contentTypeId: CF_ContentType.html;
|
|
fields: CF_HTML;
|
|
};
|