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
/
parser.d.ts
11 lines
(10 loc)
•
282 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
IParserOptions
}
from
'cbml/lib/cbml'
;
import
{
CBMLNode
}
from
'./index.type'
;
/** * 解析代码片段包含的 CBML 元素 * *
@param
code
*
@param
opts
*
@returns
CBMLRootEle
*/
export
declare
const
parseCBMLEle
:
(
code
:
string
,
opts
:
IParserOptions
) =>
CBMLNode
;