(name: string)
| 3 | import { dispatchReplSubmitPrelude } from './replSubmitPreludeDispatch.js' |
| 4 | |
| 5 | function makeCommand(name: string): Command { |
| 6 | return { |
| 7 | name, |
| 8 | description: `${name} command`, |
| 9 | type: 'local-jsx', |
| 10 | } as unknown as Command |
| 11 | } |
| 12 | |
| 13 | function makeBaseDeps() { |
| 14 | const events: string[] = [] |
no outgoing calls
no test coverage detected