Rx.Internals renamed to internals;

Added Rx.config module.
This commit is contained in:
Igor Oleinikov
2014-03-18 09:51:47 +04:00
parent c0faaf0ebc
commit b1c7626cba
2 changed files with 7 additions and 3 deletions
+6 -2
View File
@@ -1,11 +1,11 @@
// Type definitions for RxJS v2.2.13
// Type definitions for RxJS v2.2.15
// Project: http://rx.codeplex.com/
// Definitions by: gsino <http://www.codeplex.com/site/users/view/gsino>
// Definitions by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module Rx {
export module Internals {
export module internals {
function isEqual(left: any, right: any): boolean;
function inherits(child: Function, parent: Function): Function;
function addProperties(obj: Object, ...sourcces: Object[]): void;
@@ -46,6 +46,10 @@ declare module Rx {
}
}
export module config {
}
export interface IDisposable {
dispose(): void;
}
+1 -1
View File
@@ -27,7 +27,7 @@ declare module Rx {
/* protected abstract */ toDateTimeOffset(duetime: TAbsolute): number;
/* protected abstract */ toRelative(duetime: number): TRelative;
/* protected */ getNext(): Internals.ScheduledItem<TAbsolute>;
/* protected */ getNext(): internals.ScheduledItem<TAbsolute>;
}
export class HistoricalScheduler extends VirtualTimeScheduler<number, number> {