Files
number_zj/20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/toStringJSON.d.ts
毛财君 197b38ca6f 1
2023-07-06 17:37:33 +08:00

15 lines
299 B
TypeScript

/**
* 字符串转 JSON
* @param str 字符串
*/
export declare function toStringJSON(str: string | null): any;
export declare function toStringJSON(str: any): any;
declare module './ctor' {
interface XEUtilsMethods {
toStringJSON: typeof toStringJSON;
}
}
export default toStringJSON