NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/string/unescape.d.ts
2023-09-14 14:47:11 +08:00

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