UNPKG
pro-wang-plugin-upload-attachment
Version:
latest (1.0.0)
1.0.0
wangEditor 上传附件
pro-wang-plugin-upload-attachment
/
dist
/
src
/
module
/
custom-types.d.ts
15 lines
(14 loc)
•
256 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** *
@description
attachment element *
@author
wangfupeng
*/
declare
type
EmptyText
= {
text
:
''
; };
export
declare
type
AttachmentElement
= {
type
:
'attachment'
;
fileName
:
string
;
link
:
string
;
children
:
EmptyText
[]; };
export
{};