toJSONString.d.ts 236 B

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