trimLeft.d.ts 291 B

1234567891011121314
  1. /**
  2. * 去除字符串左边的空格
  3. * @param str 字符串
  4. */
  5. export declare function trimLeft(str: string): string;
  6. export declare function trimLeft(str: any): string;
  7. declare module './ctor' {
  8. interface XEUtilsMethods {
  9. trimLeft: typeof trimLeft;
  10. }
  11. }
  12. export default trimLeft