UNPKG

di-shan-utils

Version:

JavaScript 函数库、工具类

15 lines (12 loc) 298 B
/** * 转整数 * @param num 数值/字符串 */ export declare function toInteger(num: number | string | null): number; export declare function toInteger(num: any): number; declare module './ctor' { interface DIUtilsMethods { toInteger: typeof toInteger; } } export default toInteger