ff-webpage/types/component/dynamicZoneColumnImageText.ts

10 lines
345 B
TypeScript
Raw Normal View History

import type BaseComponent from "./baseComponent";
import type BaseImage from "./baseImage";
export default interface DynamicZoneColumnImageText extends BaseComponent {
__component: "dynamic-zone.column-image-text";
text: Array<{ type: string; children: Array<{ type: string; text: string }> }>;
image_left: boolean;
image: BaseImage;
}