Files
DefinitelyTyped/rx.js/rx.js.time.d.ts
Carl de Billy ddad6540d1 More RxJs definitions
Definitions for RxJs.html, RxJs.Time and RxJs.Aggregates
2013-04-16 15:35:49 -04:00

10 lines
450 B
TypeScript

///<reference path="rx.js.d.ts" />
declare module Rx {
export module Observable {
function ifThen(condition: () => bool, thenSource: IObservable): IObservable;
function ifThen(condition: () => bool, thenSource: IObservable, elseSource: IObservable): IObservable;
function ifThen(condition: () => bool, thenSource: IObservable, scheduler: IScheduler): IObservable;
function interval(period: number, scheduler?: IScheduler): IObservable;
}
}