2024-11-03 12:13:36 +00:00
|
|
|
import type ContentField from "../field/content";
|
2024-11-02 11:47:07 +00:00
|
|
|
import type BaseComponent from "./baseComponent";
|
|
|
|
import type BaseImage from "./baseImage";
|
|
|
|
|
|
|
|
export default interface DynamicZoneColumnImageText extends BaseComponent {
|
|
|
|
__component: "dynamic-zone.column-image-text";
|
2024-11-03 12:13:36 +00:00
|
|
|
text: ContentField;
|
2024-11-02 11:47:07 +00:00
|
|
|
image_left: boolean;
|
|
|
|
image: BaseImage;
|
|
|
|
}
|