Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / internal / operators / tap.d.ts
1 import { MonoTypeOperatorFunction, PartialObserver } from '../types';
2 /** @deprecated Use an observer instead of a complete callback */
3 export declare function tap<T>(next: null | undefined, error: null | undefined, complete: () => void): MonoTypeOperatorFunction<T>;
4 /** @deprecated Use an observer instead of an error callback */
5 export declare function tap<T>(next: null | undefined, error: (error: any) => void, complete?: () => void): MonoTypeOperatorFunction<T>;
6 /** @deprecated Use an observer instead of a complete callback */
7 export declare function tap<T>(next: (value: T) => void, error: null | undefined, complete: () => void): MonoTypeOperatorFunction<T>;
8 export declare function tap<T>(next?: (x: T) => void, error?: (e: any) => void, complete?: () => void): MonoTypeOperatorFunction<T>;
9 export declare function tap<T>(observer: PartialObserver<T>): MonoTypeOperatorFunction<T>;