source: trip-planner-front/node_modules/rxjs/internal/operators/tap.d.ts@ 8d391a1

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

initial commit

  • Property mode set to 100644
File size: 893 bytes
Line 
1import { MonoTypeOperatorFunction, PartialObserver } from '../types';
2/** @deprecated Use an observer instead of a complete callback */
3export declare function tap<T>(next: null | undefined, error: null | undefined, complete: () => void): MonoTypeOperatorFunction<T>;
4/** @deprecated Use an observer instead of an error callback */
5export 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 */
7export declare function tap<T>(next: (value: T) => void, error: null | undefined, complete: () => void): MonoTypeOperatorFunction<T>;
8export declare function tap<T>(next?: (x: T) => void, error?: (e: any) => void, complete?: () => void): MonoTypeOperatorFunction<T>;
9export declare function tap<T>(observer: PartialObserver<T>): MonoTypeOperatorFunction<T>;
Note: See TracBrowser for help on using the repository browser.