Files
毛财君 197b38ca6f 1
2023-07-06 17:37:33 +08:00

14 lines
236 B
TypeScript

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