NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/string/unescape.d.ts

20 lines
338 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
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