mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 13:27:15 +08:00
17 lines
533 B
TypeScript
17 lines
533 B
TypeScript
// Type definitions for RxJS-Binding v2.2.25
|
|
// Project: http://rx.codeplex.com/
|
|
// Definitions by: Carl de Billy <http://carl.debilly.net/>, Igor Oleinikov <https://github.com/Igorbek>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
///<reference path="rx.d.ts" />
|
|
///<reference path="rx.binding-lite.d.ts" />
|
|
|
|
declare module Rx {
|
|
export interface Observable<T> {
|
|
replayWhileObserved(bufferSize?: number, window?: number, scheduler?: IScheduler): Observable<T>;
|
|
}
|
|
}
|
|
|
|
declare module "rx.binding" {
|
|
export = Rx;
|
|
} |