frontend/.pnpm-store/v3/files/96/35cdeea874dbfe2017f33eb0611c5b3da538640f922cde17b936f1d4d6a4a895d9587b655fc984f43d62ea29c755f40416d451ddf1cb05a0cf7e2982c6b462

10 lines
402 B
Plaintext

import { Subscriber } from '../Subscriber';
import { Subject } from '../Subject';
/**
* Determines whether the ErrorObserver is closed or stopped or has a
* destination that is closed or stopped - in which case errors will
* need to be reported via a different mechanism.
* @param observer the observer
*/
export declare function canReportError(observer: Subscriber<any> | Subject<any>): boolean;