unescape.d.ts 274 B

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