Files
DefinitelyTyped/react-redux/react-redux.d.ts
2015-09-23 23:15:26 +09:00

9 lines
303 B
TypeScript

// Type definitions for react-redux
// Project: https://github.com/rackt/react-redux
// Definitions by: Qubo <https://github.com/tkqubo>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "react-redux" {
export function connect<T>(...functions: Function[]): (t: T) => T;
}