Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/toStringJSON.d.ts

15 lines
299 B
TypeScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
/**
* 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