ResolvedTypegenMeta
Hierarchy
- TypegenMeta
- ResolvedTypegenMeta
Index
Properties
@@xstate/typegen
eventsCausingActions
eventsCausingActors
Keeps track of which events lead to which actors.
Key: 'EVENT_NAME' Value: 'actorName' | 'otherActorName'
eventsCausingDelays
Keeps track of which events lead to which delays.
Key: 'EVENT_NAME' Value: 'delayName' | 'otherDelayName'
eventsCausingGuards
Keeps track of which events lead to which guards.
Key: 'EVENT_NAME' Value: 'guardName' | 'otherGuardName'
internalEvents
A map for the internal events of the machine.
key: 'xstate.done.actor.myActor'
value: {
type: 'xstate.done.actor.myActor';
data: unknown;
__tip: 'Declare the type in event types!';
}
Type declaration
invokeSrcNameMap
Maps the src of the invoked actor to the event type that includes its known id
key: 'invokeSrc' value: 'xstate.done.actor.invokeName'
matchesStates
Allows you to specify all the results of state.matches
missingImplementations
Allows you to specify all the missing implementations of the machine
Type declaration
actions: string
actors: string
delays: string
guards: string
resolved
tags
Allows you to specify all tags used by the machine
Keeps track of which events lead to which actions.
Key: 'EVENT_NAME' Value: 'actionName' | 'otherActionName'