mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Allow partial responder in ClientConfig * add tests * move tests into client and server packages * Update TS version to 2.2
15 lines
535 B
TypeScript
15 lines
535 B
TypeScript
// Type definitions for rsocket-flowable 0.0
|
|
// Project: https://github.com/rsocket/rsocket-js/
|
|
// Definitions by: Adrian Hope-Bailie <https://github.com/adrianhopebailie>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
import Flowable from './Flowable';
|
|
import Single from './Single';
|
|
import FlowableProcessor from './FlowableProcessor';
|
|
import { every } from './FlowableTimer';
|
|
/**
|
|
* The public API of the `flowable` package.
|
|
*/
|
|
export { Flowable, FlowableProcessor, Single, every };
|