ObservedValueTupleFromArray
type-alias
stable
Extracts a tuple of element types from an ObservableInput<any>[]
. If you have O extends ObservableInput<any>[]
and you pass in [Observable<string>, Observable<number>]
you would get back a type of [string, number]
.
type ObservedValueTupleFromArray<X> = { [K in keyof X]: ObservedValueOf<X[K]>; };
© 2015–2021 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors.
Code licensed under an Apache-2.0 License. Documentation licensed under CC BY 4.0.
https://rxjs.dev/api/index/type-alias/ObservedValueTupleFromArray