UNPKG

399 BTypeScriptView Raw
1/**
2 * 字符串格式化占位符
3 * @param { string } str
4 * @param { object | any[] } obj
5 */
6export declare function toFormatString(str: string | null, list: any[]): string;
7export declare function toFormatString(str: any, obj: any): string;
8
9declare module './ctor' {
10 interface XEUtilsMethods {
11 toFormatString: typeof toFormatString;
12 }
13}
14
15export default toFormatString