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