blob: 93b65e6464474bcc094aeba40a50a660b898ebba [file] [log] [blame]
import { Subscriber } from './Subscriber';
import { TeardownLogic } from './types';
export interface Operator<T, R> {
call(subscriber: Subscriber<R>, source: any): TeardownLogic;
}