DefinitelyTyped/types/flux/utils.d.ts
Giedrius Grabauskas 39cf359166 Recreated types for flux@3.2 (#15800)
* 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.
2017-05-04 18:04:37 -07:00

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
};