ActionHandlers
@rotorsoft/act-root / act/src / ActionHandlers
Type Alias: ActionHandlers<S, E, A>
ActionHandlers<
S
,E
,A
> ={ [K in keyof A]: ActionHandler<S, E, A, K> }
Defined in: libs/act/src/types/action.ts:187
Maps action names to their handlers.
Type Parameters
S
S
extends Schema
State schema.
E
E
extends Schemas
Event schemas.
A
A
extends Schemas
Action schemas.