Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ObservableInputTuple

Used to infer types from arguments to functions like forkJoin. So that you can have forkJoin([Observable<A>, PromiseLike<B>]): Observable<[A, B]> et al.

type ObservableInputTuple<T> = [K in keyof T]: ObservableInput<T[K]>;

§Type Parameters

§Type

§
[K in keyof T]: ObservableInput<T[K]>
[src]