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