minor adjustment to readme
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / internal / util / canReportError.d.ts
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;