Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/template.d.ts

18 lines
559 B
TypeScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
/**
*
* @param str
* @param args
*/
export declare function template(str: string, args: any | any[]): string;
export declare function template(str: any, args: any | any[]): string;
export declare function template(str: string, args: any | any[], options: { tmplRE?: RegExp }): string;
export declare function template(str: any, args: any | any[], options: { tmplRE?: RegExp }): string;
declare module './ctor' {
interface XEUtilsMethods {
template: typeof template;
}
}
export default template