blob: 6ae2897bdfb888ac39719545273400de3af2d057 [file] [log] [blame]
import { Subscriber } from '../Subscriber';
import { PartialObserver } from '../types';
export declare function toSubscriber<T>(nextOrObserver?: PartialObserver<T> | ((value: T) => void), error?: (error: any) => void, complete?: () => void): Subscriber<T>;