简体   繁体   中英

Is it possible to pass type parameters to a generic parameter in Typescript?

Is something like the following possible:

interface Foo<X> {
    bar: X<string, number>
}

I am assuming it is not possible, but Typescript's type system has suprised me before.

Just omit X on the interface level and define it on the property:

interface Foo {
    bar: X<string, number>
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM