(action: T.Action)
| 16 | export const editor = acquireVsCodeApi() |
| 17 | |
| 18 | const editorSend = (action: T.Action) => |
| 19 | editor.postMessage({ |
| 20 | ...action, |
| 21 | source: 'coderoad', // filter events by source on editor side |
| 22 | }) |
| 23 | |
| 24 | // router finds first state match of <Route path='' /> |
| 25 | const useStateMachine = (): Output => { |
no outgoing calls
no test coverage detected