Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

canReportError.d.ts 402B

123456789
  1. import { Subscriber } from '../Subscriber';
  2. import { 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. */
  9. export declare function canReportError(observer: Subscriber<any> | Subject<any>): boolean;