source: trip-planner-front/node_modules/rxjs/internal/util/canReportError.d.ts

Last change on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 402 bytes
RevLine 
[6a3a178]1import { Subscriber } from '../Subscriber';
2import { Subject } from '../Subject';
3/**
4 * Determines whether the ErrorObserver is closed or stopped or has a
5 * destination that is closed or stopped - in which case errors will
6 * need to be reported via a different mechanism.
7 * @param observer the observer
8 */
9export declare function canReportError(observer: Subscriber<any> | Subject<any>): boolean;
Note: See TracBrowser for help on using the repository browser.