logo

Todash 2.4.0

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


“Tuple” 方法


_.TupleByPush<tuple, type>

将一个类型添加元组的末尾,并返回元组


参数


tuple (Tuple): 需要处理的元组
type (unknown): 需要被添加到元组中的类型


返回


tuple (Tuple): 返回新类型被添加到最后一项之后元组


例子


type TupleAfterPush = _.TupleByPush<['angular'], 'react'>;
// => ['angular', 'react']

type TupleAfterPush = _.TupleByPush<['angular', 'react'], 'vue'>;
// => ['angular', 'react', 'vue']