/** * 判断是否Boolean对象 * * @param {object} obj 对象 * @return {boolean} */ declare const isBoolean: (obj: any) => boolean; export default isBoolean;