UNPKG

@lifaon/rx-js-light

Version:

Blazing fast Observables

6 lines (5 loc) 249 B
import { IObservable } from '../../../../../type/observable.type'; export interface IDefferFactoryFunction<GValue> { (): IObservable<GValue>; } export declare function defer<GValue>(factory: IDefferFactoryFunction<GValue>): IObservable<GValue>;