trim.d.ts 277 B

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