logo

Todash 2.4.0

是一个 类型推导 工具库,旨在帮助你快速方便的编写具备类型推导的 TypeScript 代码。


“Tuple” 方法


_.PopTuple<tuple>

返回元组中的最后一项


参数


tuple (Tuple): 需要处理的元组


返回


tuple (Tuple): 返回元组中的最后一项


例子


type LastItem = _.ShiftTuple<['vue', 'react', 'angular']>;
// => 'angular'

type LastItem = _.ShiftTuple<['vue', 'react']>;
// => 'react'