mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Recreated types for flux@3.1.2. * Added backward compatibility with implementation. Added overload for create method. * Fixed tslint error in tests. * Added one more test for old implementation. * Added more gerenrics in create method. Updated tests. * Fixed errors. * Typescript version changed to 2.2. * Updated `createFunctional` return.
12 lines
260 B
TypeScript
12 lines
260 B
TypeScript
import * as Container from "./lib/FluxContainer";
|
|
import * as Mixin from "./lib/FluxMixinLegacy";
|
|
import * as ReduceStore from "./lib/FluxReduceStore";
|
|
import * as Store from "./lib/FluxStore";
|
|
|
|
export {
|
|
Container,
|
|
Mixin,
|
|
ReduceStore,
|
|
Store
|
|
};
|