作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前,TypeScript 允许声明动态泛型参数。
function bind<U extends any[]>(...args: U);
但是如果我希望我的函数返回参数类型的联合怎么办?像这样的东西:
function bind<U extends any[]>(...args: U): U1 | U2 | U3...;
有办法吗?
最佳答案
要获得所有参数的联合,您可以使用 U[number]
:
function bind<U extends any[]>(...args: U): U[number] {
return args[Math.round(Math.random()*(args.length - 1))]; // dummy implementation
}
let r = bind(1,"2", true) // number | string | boolean
console.log(r)
你也可以获取某个位置的类型,但由于我们不知道该位置是否存在,所以我们需要使用条件类型;
type At<T extends any[], I extends number> = T extends Record<I, infer U> ? U : never;
function bind<U extends any[]>(...args: U): At<U, 0> {
return args[Math.round(Math.random()*(args.length - 1))]; // dummy implementation
}
let r = bind(1,"2", true) // number
关于联合返回类型的 TypeScript 泛型剩余参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56292376/
我是一名优秀的程序员,十分优秀!