StateSchemas
@rotorsoft/act-root / act/src / StateSchemas
Type Alias: StateSchemas<S, E, A>
StateSchemas<
S,E,A> =object
Defined in: libs/act/src/types/action.ts:143
Bundles the Zod types for state, events, and actions.
Type Parameters
S
S extends Schema
State schema.
E
E extends Schemas
Event schemas.
A
A extends Schemas
Action schemas.
Properties
actions
readonlyactions:ZodTypes<A>
Defined in: libs/act/src/types/action.ts:149
events
readonlyevents:ZodTypes<E>
Defined in: libs/act/src/types/action.ts:148
state
readonlystate:ZodType<S>
Defined in: libs/act/src/types/action.ts:150