20 lines
338 B
TypeScript
20 lines
338 B
TypeScript
import { XEUtilsMethods } from '../xe-utils'
|
|
|
|
/**
|
|
* 反转 escape
|
|
* @param str 字符串
|
|
*/
|
|
export declare function unescape(str: string): string;
|
|
|
|
declare module '../xe-utils' {
|
|
interface XEUtilsMethods {
|
|
/**
|
|
* 反转 escape
|
|
* @param str 字符串
|
|
*/
|
|
unescape: typeof unescape;
|
|
}
|
|
}
|
|
|
|
export default unescape
|