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