/** * 获取对象第一个值 * * @param {object} obj 对象/数组 * @return {object} */ declare function first(obj: any): any; export default first;