Type Alias: UnwrapSourceValue<T>
UnwrapSourceValue<
T> =TextendsObservable<infer V> ?V:Textends readonlyunknown[] ?{ -readonly [K in keyof T]: UnwrapSourceValue<T[K]> }:T
Defined in: packages/rx/src/types.ts:39
Recursively extracts the emitted value type from an Observable, an array of Observables, or returns the type itself if it's a static value.
Type Parameters
T
T
The input type to unwrap.