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