/** * 判断是否 undefined 和 null * @param {object} obj 对象 * @return {boolean} */ declare function eqNull(obj: any): boolean; export default eqNull;