UNPKG

rxjs-compat

Version:

[![CircleCI](https://circleci.com/gh/ReactiveX/rxjs/tree/6.x.svg?style=svg)](https://circleci.com/gh/ReactiveX/rxjs/tree/6.x) [![npm version](https://badge.fury.io/js/%40reactivex%2Frxjs.svg)](http://badge.fury.io/js/%40reactivex%2Frxjs) [![Join the chat

13 lines (12 loc) 474 B
import { Observable } from 'rxjs'; /** * Ignores all items emitted by the source Observable and only passes calls of `complete` or `error`. * * <img src="./img/ignoreElements.png" width="100%"> * * @return {Observable} An empty Observable that only calls `complete` * or `error`, based on which one is called by the source Observable. * @method ignoreElements * @owner Observable */ export declare function ignoreElements(this: Observable<any>): Observable<never>;