UNPKG

ngx-core-business

Version:

A comprehensive solution designed to streamline the development of enterprise-level Angular applications.

16 lines (15 loc) 331 B
export declare class StringUtils { /** * Example: * ``` * StringUtils.format('hello {0}', 'world'); * ``` * * @param tpl * @param args */ static format(tpl: string, ...args: any[]): string; static compileTpl(tpl: string, tplData: { [key: string]: any; }): string; }