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

combineLatestWith

import { combineLatestWith } from "https://raw.githubusercontent.com/surma/observables-with-streams/28c55be6d855780c677fd1f4ba975f4d3144891d/src/index.ts";

Combines items from the original observable with the other observables. See combineLatest.

function combineLatestWith<S, T1>(other: Observable<T1>): Transform<S, [S, T1]>;
function combineLatestWith<S, T1, T2>(o1: Observable<T1>, o2: Observable<T2>): Transform<S, [S, T1, T2]>;
function combineLatestWith<T>(...others: Observable<T>[]): Transform<T, T[]>;
function combineLatestWith<T>(...others: Observable<T>[]): Transform<T, T[]>;
§
combineLatestWith<S, T1>(other: Observable<T1>): Transform<S, [S, T1]>
[src]

Combines items from the original observable with the other observables. See combineLatest.

§Type Parameters

§Parameters

§Return Type

§
Transform<S, [S, T1]>
[src]

Transform that emits tuples of items.

§
combineLatestWith<S, T1, T2>(o1: Observable<T1>, o2: Observable<T2>): Transform<S, [S, T1, T2]>
[src]

§Type Parameters

§Parameters

§Return Type

§
Transform<S, [S, T1, T2]>
[src]
§
combineLatestWith<T>(...others: Observable<T>[]): Transform<T, T[]>
[src]

§Type Parameters

§Parameters

§
...others: Observable<T>[] optional
[src]

§Return Type

§
combineLatestWith<T>(...others: Observable<T>[]): Transform<T, T[]>
[src]

§Type Parameters

§Parameters

§
...others: Observable<T>[] optional
[src]

§Return Type