UNPKG
@wangeditor/code-highlight
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
0.9.6
0.9.5
0.9.4
0.9.3
0.9.2
0.9.1
0.9.0
0.8.0
0.7.11
0.7.10
0.7.9
0.7.8
0.7.6
0.7.5
0.7.4
0.7.3
0.7.2
0.7.1
0.7.0
0.2.1
0.1.1
wangEditor code-highlight module
github.com/wangeditor-team/wangEditor
wangeditor-team/wangEditor
@wangeditor/code-highlight
/
dist
/
code-highlight
/
src
/
module
/
elem-to-html.d.ts
12 lines
(11 loc)
•
278 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** *
@description
to html *
@author
wangfupeng
*/
import
{
Element
}
from
'slate'
;
declare
function
codeToHtml
(
elem
:
Element
,
childrenHtml
:
string
):
string
;
export
declare
const
codeToHtmlConf
: {
type
:
string
;
elemToHtml
:
typeof
codeToHtml; };
export
{};