9 lines
345 B
TypeScript
9 lines
345 B
TypeScript
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;
|
|
}
|