UNPKG

r-magnet

Version:

A state management library for React

3 lines (2 loc) 242 B
import { ActionCreatorWithPayload, ActionCreatorWithoutPayload } from './typeHelper'; export declare function createAction<P = void, T extends string = string>(type: string): ActionCreatorWithoutPayload<T> | ActionCreatorWithPayload<P, T>;