mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
28 lines
816 B
TypeScript
28 lines
816 B
TypeScript
// Type definitions for knockout.rx 0.1
|
|
// Project: https://github.com/Igorbek/knockout.rx
|
|
// Definitions by: Igor Oleinikov <https://github.com/Igorbek>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../knockout/knockout.d.ts"/>
|
|
/// <reference path="../rx.js/rx.d.ts"/>
|
|
|
|
interface KnockoutSubscribableFunctions<T> {
|
|
toObservable(event?: string): Rx.Observable<T>;
|
|
toObservable<TEvent>(event: string): Rx.Observable<TEvent>;
|
|
}
|
|
|
|
interface KnockoutObservableFunctions<T> {
|
|
toObservableWithReplyLatest(): Rx.Observable<T>;
|
|
}
|
|
|
|
interface KnockoutComputedFunctions<T> {
|
|
toObservableWithReplyLatest(): Rx.Observable<T>;
|
|
}
|
|
|
|
declare module Rx {
|
|
interface Observable<T> {
|
|
toKoSubscribable(): KnockoutSubscribable<T>;
|
|
toKoObservable(initialValue?: T): KnockoutObservable<T>;
|
|
}
|
|
}
|