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";
|
2025-01-18 10:30:46 +00:00
|
|
|
import type BaseFile from "./baseFile";
|
2024-11-02 11:47:07 +00:00
|
|
|
|
|
|
|
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;
|
2025-01-18 10:30:46 +00:00
|
|
|
image: BaseFile;
|
2024-11-02 11:47:07 +00:00
|
|
|
}
|