You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* 转整数
|
|
* @param num 数值/字符串
|
|
*/
|
|
export declare function toInteger(num: number | string | null): number;
|
|
export declare function toInteger(num: any): number;
|
|
|
|
declare module './ctor' {
|
|
interface XEUtilsMethods {
|
|
toInteger: typeof toInteger;
|
|
}
|
|
}
|
|
|
|
export default toInteger
|
|
|