import { Observable } from './Observable'; export type UnaryFunction = (source: T) => R; export type OperatorFunction = UnaryFunction, Observable>; export type FactoryOrValue = T | (() => T); export type MonoTypeOperatorFunction = OperatorFunction;