NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/base/toJSONString.d.ts
2023-09-14 14:47:11 +08:00

20 lines
353 B
TypeScript

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