10 lines
274 B
TypeScript
10 lines
274 B
TypeScript
|
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;
|
||
|
}
|