Last change
on this file since bdd6491 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
893 bytes
|
Line | |
---|
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>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.