UNPKG

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