UNPKG

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