/** * [返回数组或对象的末尾值] * @param {Array / Object} value 源集合 */ declare const last: (value: any[] | Object) => T; export default last;