xstate 5.17.2 → 5.17.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -899,6 +899,18 @@ export type ToChildren<TActor extends ProvidedActor> = string extends TActor['sr
899
899
  export type StateSchema = {
900
900
  id?: string;
901
901
  states?: Record<string, StateSchema>;
902
+ type?: unknown;
903
+ invoke?: unknown;
904
+ on?: unknown;
905
+ entry?: unknown;
906
+ exit?: unknown;
907
+ onDone?: unknown;
908
+ after?: unknown;
909
+ always?: unknown;
910
+ meta?: unknown;
911
+ output?: unknown;
912
+ tags?: unknown;
913
+ description?: unknown;
902
914
  };
903
915
  export type StateId<TSchema extends StateSchema, TKey extends string = '(machine)', TParentKey extends string | null = null> = (TSchema extends {
904
916
  id: string;