UNPKG

@yangeditor/plugin-upload-attachment

Version:
15 lines (14 loc) 256 B
/** * @description attachment element * @author wangfupeng */ declare type EmptyText = { text: ''; }; export declare type AttachmentElement = { type: 'attachment'; fileName: string; link: string; children: EmptyText[]; }; export {};