ff-webpage/types/component/dynamicZoneColumnImageText.ts

11 lines
335 B
TypeScript
Raw Normal View History

import type ContentField from "../field/content";
import type BaseComponent from "./baseComponent";
import type BaseImage from "./baseImage";
export default interface DynamicZoneColumnImageText extends BaseComponent {
__component: "dynamic-zone.column-image-text";
text: ContentField;
image_left: boolean;
image: BaseImage;
}