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