UNPKG
@alanchenchen/cbml-processor
Version:
latest (1.0.1)
1.0.1
1.0.0
基于cbml parser和cbml规范实现的构建工具
github.com/alanchenchen/cbml-processor
alanchenchen/cbml-processor
@alanchenchen/cbml-processor
/
types
/
generater.d.ts
9 lines
(8 loc)
•
203 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
CBMLNode
}
from
'./index.type'
;
/** * 基于CBML的AST tree,生成code string * *
@param
CBMLRootNode
*
@returns
*/
export
declare
const
generateCode
:
(
CBMLRootNode
:
CBMLNode
) =>
string
;