UNPKG
@joker.front/ast
Version:
latest (1.3.31)
1.3.31
1.3.30
1.3.29
1.3.28
1.3.25
1.3.24
1.3.22
1.3.21
1.3.20
1.3.19
### Overview
jokers.pub
@joker.front/ast
/
types
/
ast
/
text.d.ts
9 lines
(8 loc)
•
184 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
AST
}
from
"../type"
;
export
type
CreateText
=
(
text
:
string
) =>
AST
.
Text
;
/** * 创建文本节点 *
@param
text
*
@returns
*/
export
declare
let
createText
:
CreateText
;