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