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

20 lines
406 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { XEUtilsMethods } from '../xe-utils'
/**
* HTML字符串&, <, >, ", ', \`字符
* @param str
*/
export declare function escape(str: string): string;
declare module '../xe-utils' {
interface XEUtilsMethods {
/**
* HTML字符串&, <, >, ", ', \`字符
* @param str
*/
escape: typeof escape;
}
}
export default escape