toInteger.d.ts 298 B

1234567891011121314
  1. /**
  2. * 转整数
  3. * @param num 数值/字符串
  4. */
  5. export declare function toInteger(num: number | string | null): number;
  6. export declare function toInteger(num: any): number;
  7. declare module './ctor' {
  8. interface XEUtilsMethods {
  9. toInteger: typeof toInteger;
  10. }
  11. }
  12. export default toInteger