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