We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd9626a commit e659f0cCopy full SHA for e659f0c
src/operators/tap.ts
@@ -8,7 +8,7 @@ import { noop } from '../util/noop';
8
import { isFunction } from '../util/isFunction';
9
10
/* tslint:disable:max-line-length */
11
-export function tap<T>(next: (x: T) => void, error?: (e: any) => void, complete?: () => void): MonoTypeOperatorFunction<T>;
+export function tap<T>(next?: (x: T) => void, error?: (e: any) => void, complete?: () => void): MonoTypeOperatorFunction<T>;
12
export function tap<T>(observer: PartialObserver<T>): MonoTypeOperatorFunction<T>;
13
/* tslint:enable:max-line-length */
14
0 commit comments