mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
* Move rx.virtualtime to its own package * Update headers * Update module name * Move rx.time to its own package * Update header and module name * Move rx.testing to its own package * Update headers and module name * Move rx.joinpatterns to its own package * Update headers and module name * Move rx.expermental to its own package * Update headder and module name * Move rx.coincidence to its own package * Combine rx.coincidence-lite.d.ts and rx.coincidence.d.ts into one file * Update header and module name * Move rx.binding to its own package * combine rx.binding into index.d.ts * Update headers and module name * Move rx.backpressure to its own package * Fix headers and update module name * Move rx.aggregte to its own package * Fix headers and update module name * move rx.async to its own package * Fix headers and module name * move startAsync to rx-lite-async * Move fromCallback tests back to rx * Move rx-lite to its own package * Fix headers * Combine files * import new module * Fix file extension * Fix strict null checks * Move definitions back to rx * move rx-core to its own package * Update header and change module name * Fix lint errors * reference new rx-core * update index.d.ts * Point to new submodules * turn strictNull On * update tslint config * Update module name * Move Subject to core-binding * Make rx-lite-* libraries depend on rx-lite * Fix reference * Fix lint errors * Disable lint rules * Disable lint rules * Fix failing test * Fixed up indentation on 'rx-lite-async-tests.ts' * Fix formatting * Switch tabs to spaces
22 lines
851 B
TypeScript
22 lines
851 B
TypeScript
// Type definitions for rx 4.1
|
|
// Project: https://github.com/Reactive-Extensions/RxJS
|
|
// Definitions by: Carl de Billy <http://carl.debilly.net/>, gsino <http://www.codeplex.com/site/users/view/gsino>, Igor Oleinikov <https://github.com/Igorbek>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="rx-core"/>
|
|
/// <reference types="rx-core-binding"/>
|
|
/// <reference types="rx-lite-aggregates"/>
|
|
/// <reference types="rx-lite"/>
|
|
/// <reference types="rx-lite-async"/>
|
|
/// <reference types="rx-lite-backpressure"/>
|
|
/// <reference types="rx-lite-coincidence"/>
|
|
/// <reference types="rx-lite-experimental"/>
|
|
/// <reference types="rx-lite-joinpatterns"/>
|
|
/// <reference types="rx-lite-testing"/>
|
|
/// <reference types="rx-lite-time"/>
|
|
/// <reference types="rx-lite-virtualtime"/>
|
|
|
|
declare module "rx" {
|
|
export = Rx;
|
|
}
|