jssm 5.57.0 → 5.57.1

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.
package/jssm.d.ts CHANGED
@@ -101,6 +101,7 @@ declare class Machine<mDT> {
101
101
  hook_action(from: string, to: string, action: string, handler: HookHandler): Machine<mDT>;
102
102
  hook_any_transition(handler: HookHandler): Machine<mDT>;
103
103
  hook_entry(to: string, handler: HookHandler): Machine<mDT>;
104
+ hook_exit(from: string, handler: HookHandler): Machine<mDT>;
104
105
  transition_impl(newStateOrAction: StateType, newData: mDT | undefined, wasForced: boolean, wasAction: boolean): boolean;
105
106
  action(actionName: StateType, newData?: mDT): boolean;
106
107
  transition(newState: StateType, newData?: mDT): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jssm",
3
- "version": "5.57.0",
3
+ "version": "5.57.1",
4
4
  "engines": {
5
5
  "node": ">=10.0.0"
6
6
  },