Bones/node_modules/rxjs/operator/exhaust.d.ts
SOUTHERNCO\x2mjbyrn 7efe7605b8 Template Upload
2017-05-17 13:45:25 -04:00

10 lines
574 B
TypeScript

import { Observable } from '../Observable';
/**
* Returns an Observable that takes a source of observables and propagates the first observable exclusively
* until it completes before subscribing to the next.
* Items that come in before the first has exhausted will be dropped.
* Similar to `concatAll`, but will not hold on to items that come in before the first is exhausted.
* @returns {Observable} an Observable which contains all of the items of the first Observable and following Observables in the source.
*/
export declare function exhaust<T>(): Observable<T>;