Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tap.d.ts 893B

123456789
  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>;