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

20 lines
359 B
TypeScript

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