UNPKG

hl-utils-test518

Version:

JavaScript 函数库、工具类

14 lines (11 loc) 236 B
/** * JSON 转字符串 * @param obj 对象 */ export declare function toJSONString(obj: any): string; declare module './ctor' { interface HLUtilsMethods { toJSONString: typeof toJSONString; } } export default toJSONString