ff-webpage/types/component/dynamicZoneColumnImageText.ts

11 lines
332 B
TypeScript
Raw Permalink Normal View History

import type ContentField from "../field/content";
import type BaseComponent from "./baseComponent";
2025-01-18 10:30:46 +00:00
import type BaseFile from "./baseFile";
export default interface DynamicZoneColumnImageText extends BaseComponent {
__component: "dynamic-zone.column-image-text";
text: ContentField;
image_left: boolean;
2025-01-18 10:30:46 +00:00
image: BaseFile;
}