/** * 判断是否为空对象 * * @param {object} obj 对象 * @return {boolean} */ declare function isEmpty(obj: any): boolean; export default isEmpty;