Files
DefinitelyTyped/types/flux/index.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

13 lines
386 B
TypeScript

// Type definitions for Flux 3.1
// Project: http://facebook.github.io/flux/
// Definitions by: Steve Baker <https://github.com/stkb/>
// Giedrius Grabauskas <https://github.com/GiedriusGrabauskas/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
import * as Dispatcher from "./lib/Dispatcher";
export {
Dispatcher
};