django-vue3-admin-web/node_modules/xe-utils/toJSONString.d.ts
2025-10-20 21:21:14 +08:00

14 lines
249 B
TypeScript

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