xhy-xe-utils
Version:
JavaScript 函数库、工具类
21 lines (18 loc) • 453 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