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
/
serialize.d.ts
7 lines
(6 loc)
•
220 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
type
{
CQCode
}
from
'../index'
;
/** *
@param
{
CQCode
} cqCode 即将被序列化的CQCode对象。 *
@return
{
string
} 返回CQCode字符串。 */
export
declare
const
serialize
:
(
cqCode
:
CQCode
) =>
string
;