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

22 lines
434 B
TypeScript

import { XEUtilsMethods } from '../xe-utils'
/**
* 解析动态字符串模板
* @param str 字符串模板
* @param obj 对象
*/
export declare function template(str: string, obj: any): string;
declare module '../xe-utils' {
interface XEUtilsMethods {
/**
* 解析动态字符串模板
* @param str 字符串模板
* @param obj 对象
*/
template: typeof template;
}
}
export default template