mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add types for react-async-queue * Add strictFunctionTypes * Fixes * Unused import * Unused import
12 lines
415 B
TypeScript
12 lines
415 B
TypeScript
// Type definitions for redux-async-queue 1.0
|
|
// Project: https://github.com/zackargyle/redux-async-queue
|
|
// Definitions by: Andrei Horodinca <https://github.com/andreiho>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
import { AnyAction } from 'redux';
|
|
|
|
declare function queueMiddleware(): (next: (action: AnyAction) => any) => any;
|
|
|
|
export default queueMiddleware;
|