@reduxjs/toolkit
Version:
The official, opinionated, batteries-included toolset for efficient Redux development
13 lines (12 loc) • 571 B
TypeScript
import type { Middleware } from 'redux';
export interface ActionCreatorInvariantMiddlewareOptions {
/**
* The function to identify whether a value is an action creator.
* The default checks for a function with a static type property and match method.
*/
isActionCreator?: (action: unknown) => action is Function & {
type?: unknown;
};
}
export declare function getMessage(type?: unknown): string;
export declare function createActionCreatorInvariantMiddleware(options?: ActionCreatorInvariantMiddlewareOptions): Middleware;