UNPKG

xe-utils

Version:

JavaScript 函数库、工具类

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