MCPcopy Create free account
hub / github.com/coderoad/coderoad-vscode / createOptions

Function createOptions

web-app/src/services/state/machine.ts:5–12  ·  view source on GitHub ↗
({ editorSend }: any)

Source from the content-addressed store, hash-verified

3import createActions from './actions'
4
5const createOptions = ({ editorSend }: any): MachineOptions<CR.MachineContext, CR.MachineEvent> => ({
6 activities: {},
7 // @ts-ignore
8 actions: createActions(editorSend),
9 guards: {},
10 services: {},
11 delays: {},
12})
13
14export const createMachine = (options: any) => {
15 return Machine<CR.MachineContext, CR.MachineStateSchema, CR.MachineEvent>(

Callers 1

createMachineFunction · 0.85

Calls 1

createActionsFunction · 0.85

Tested by

no test coverage detected