UNPKG

pro-wang-plugin-upload-attachment

Version:

wangEditor 上传附件

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 {};