Skip to content

Commit

Permalink
feat(fsm)!: export fsm main api
Browse files Browse the repository at this point in the history
Co-authored-by: Mohammad Honarvar <[email protected]>
  • Loading branch information
alimd and mohammadhonarvar committed Mar 17, 2023
1 parent d7dcbb3 commit 4cdfcc6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions core/fsm/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import {defineActions, defineConstructor} from './core.js';

export {finiteStateMachineConsumer} from './core.js';
export const finiteStateMachineProvider = {
defineConstructor,
defineActions,
} as const;

export type {FsmTypeHelper, FsmConstructorConfig} from './type.js';

0 comments on commit 4cdfcc6

Please sign in to comment.