mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Added type definitions for use-combined-reducers * fixed errors * fixed typo * deleted typescript version declaration * defined the same typescript version as react
7 lines
165 B
TypeScript
7 lines
165 B
TypeScript
import useCombinedReducers from 'use-combined-reducers';
|
|
|
|
useCombinedReducers<{ a: number; b: any }, () => {}>({
|
|
a: ['', () => { }],
|
|
b: ['', () => { }],
|
|
});
|