mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-28 08:17:54 +08:00
9 lines
303 B
TypeScript
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;
|
|
}
|