UNPKG
cqcode
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
CQCode Helper for NodeJS.
git.futo.design/zero/cqcode
cqcode
/
dist
/
utils
/
parse.d.ts
7 lines
(6 loc)
•
235 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
type
{
CQCode
}
from
'../index'
;
/** *
@param
{
string
} text 即将被解析的CQCode字符串,以[开始,以]结束。 *
@return
{
CQCode
} 返回CQCode对象。 */
export
declare
const
parse
:
(
text
:
string
) =>
CQCode
;