UNPKG
wangeditor-plugin-upload-pdf
Version:
latest (0.0.8)
0.0.8
0.0.6
wangEditor 导入PDF
github.com/LBASD/wangEditor-plugin-upload-pdf
LBASD/wangEditor-plugin-upload-pdf
wangeditor-plugin-upload-pdf
/
dist
/
src
/
module
/
custom-types.d.ts
15 lines
(14 loc)
•
248 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
PDFElement
= {
type
:
'importPdf'
;
src
:
string
;
shortcode
:
string
;
children
:
EmptyText
[]; };
export
{};