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