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