UNPKG

249 BTypeScriptView Raw
1/**
2 * JSON 转字符串
3 * @param obj 对象
4 */
5export declare function toJSONString(obj: any): string;
6
7declare module './ctor' {
8 interface XEUtilsMethods {
9 toJSONString: typeof toJSONString;
10 }
11}
12
13export default toJSONString