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
/
comment.d.ts
9 lines
(8 loc)
•
196 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
AST
}
from
"../type"
;
export
type
CreateComment
=
(
text
:
string
) =>
AST
.
Comment
;
/** * 创建注释节点 *
@param
text
*
@returns
*/
export
declare
let
createComment
:
CreateComment
;