Sha256: c786cd8ad0c5845cf462c8a061f9d8a88271181aa3ffd23ccfb435123d1eb163
Contents?: true
Size: 534 Bytes
Versions: 49
Compression:
Stored size: 534 Bytes
Contents
import { MonoTypeOperatorFunction } from '../interfaces'; /** * Returns an Observable that mirrors the source Observable, but will call a specified function when * the source terminates on complete or error. * @param {function} callback Function to be called when source terminates. * @return {Observable} An Observable that mirrors the source, but will call the specified function on termination. * @method finally * @owner Observable */ export declare function finalize<T>(callback: () => void): MonoTypeOperatorFunction<T>;
Version data entries
49 entries across 49 versions & 4 rubygems