ff-webpage/types/component/dynamicZoneFullImage.ts

8 lines
224 B
TypeScript
Raw Permalink Normal View History

import type BaseComponent from "./baseComponent";
2025-01-18 10:30:46 +00:00
import type BaseFile from "./baseFile";
export default interface DynamicZoneFullImage extends BaseComponent {
__component: "dynamic-zone.full-image";
2025-01-18 10:30:46 +00:00
image: BaseFile;
}