toStringJSON.d.ts 292 B

1234567891011121314
  1. /**
  2. * 字符串转 JSON
  3. * @param str 字符串
  4. */
  5. export declare function toStringJSON(str: string): any;
  6. export declare function toStringJSON(str: any): any;
  7. declare module './ctor' {
  8. interface XEUtilsMethods {
  9. toStringJSON: typeof toStringJSON;
  10. }
  11. }
  12. export default toStringJSON