Ohm-Management - Projektarbeit B-ME

tap.d.ts 294B

123
  1. import { MonoTypeOperatorFunction, PartialObserver } from '../types';
  2. export declare function tap<T>(next?: (x: T) => void, error?: (e: any) => void, complete?: () => void): MonoTypeOperatorFunction<T>;
  3. export declare function tap<T>(observer: PartialObserver<T>): MonoTypeOperatorFunction<T>;