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