ff-webpage/types/component/dynamicZoneFileDownload.ts

10 lines
274 B
TypeScript
Raw Permalink Normal View History

2025-01-18 10:30:46 +00:00
import type BaseComponent from "./baseComponent";
import type BaseFile from "./baseFile";
export default interface DynamicZoneFileDownload extends BaseComponent {
__component: "dynamic-zone.file-download";
enable_download: boolean;
title: string;
file: BaseFile;
}