toFormatString.d.ts 384 B

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