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

22 lines
434 B
TypeScript
Raw Normal View History

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