Represents the Readable (input) types of StateReducer actions.
type T = StateReducerInput<{ foo: string, bar: number, nothing: void }>// | { action: 'foo', param: string }// | { action: 'bar', param: number }// | { action: 'nothing' } Copy
type T = StateReducerInput<{ foo: string, bar: number, nothing: void }>// | { action: 'foo', param: string }// | { action: 'bar', param: number }// | { action: 'nothing' }
Generated using TypeDoc
Represents the Readable (input) types of StateReducer actions.