mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
8 lines
348 B
TypeScript
8 lines
348 B
TypeScript
// Type definitions for reduce-reducers 0.1
|
|
// Project: https://github.com/acdlite/reduce-reducers
|
|
// Definitions by: Huy Nguyen <https://github.com/huy-nguyen>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
import { Reducer } from 'redux';
|
|
export default function reduceReducer<S>(...reducers: Array<Reducer<S>>): Reducer<S>;
|