frontend/.pnpm-store/v3/files/08/ba715fdcce5ec973f73ad695193e6c8202612795ba9f7339afdcb71617e89c8e569058f966c2656d8741bd8fbe55b4de34d6879b6fe06ec5e3e125f735e9f8

10 lines
749 B
Plaintext

import { MonoTypeOperatorFunction, Observer } from '../types';
export interface TapObserver<T> extends Observer<T> {
subscribe: () => void;
unsubscribe: () => void;
finalize: () => void;
}
export declare function tap<T>(observerOrNext?: Partial<TapObserver<T>> | ((value: T) => void)): MonoTypeOperatorFunction<T>;
/** @deprecated Instead of passing separate callback arguments, use an observer argument. Signatures taking separate callback arguments will be removed in v8. Details: https://rxjs.dev/deprecations/subscribe-arguments */
export declare function tap<T>(next?: ((value: T) => void) | null, error?: ((error: any) => void) | null, complete?: (() => void) | null): MonoTypeOperatorFunction<T>;
//# sourceMappingURL=tap.d.ts.map