17 lines
482 B
TypeScript
17 lines
482 B
TypeScript
import type { CF_ContentType } from "./Contentful_ContentType.enum";
|
|
import type { CF_ComponentImgSkeleton } from "./Contentful_Img";
|
|
import type { CF_ComponentLayout } from "./Contentful_Layout";
|
|
|
|
export interface CF_ComponentIframe {
|
|
name: string;
|
|
content: string;
|
|
iframe: string;
|
|
overlayImage?: CF_ComponentImgSkeleton;
|
|
layout: CF_ComponentLayout;
|
|
}
|
|
|
|
export interface CF_ComponentIframeSkeleton {
|
|
contentTypeId: CF_ContentType.iframe;
|
|
fields: CF_ComponentIframe;
|
|
}
|