UNPKG

tmaiplugin

Version:

TrainingMaster AIGC Component

13 lines (12 loc) 433 B
/** * 将一段很长的文本,按1024长度来划分到多个段落中 * @param {*} content */ export declare function splitLongText(content: string, len?: number): string[]; /** * 修复JSON的字符串 * 验证JSON字符串是否是真正可转换为JSON的合法格式 * 这里只能做一个最简单的处理,就是用两端的符号 * @param jsonstr */ export declare function fixedJsonString(jsonstr: string): any[];