/** * 判断是否整数 * * @param {Number, String} number 数值 * @return {boolean} */ declare const isInteger: (obj: any) => boolean; export default isInteger;