(name: string)
| 6 | import { dispatchReplSubmit } from './replSubmitDispatch.js' |
| 7 | |
| 8 | function makeCommand(name: string): Command { |
| 9 | return { |
| 10 | name, |
| 11 | description: `${name} command`, |
| 12 | type: 'local-jsx', |
| 13 | } as unknown as Command |
| 14 | } |
| 15 | |
| 16 | function makeBaseOptions(overrides: Record<string, unknown> = {}) { |
| 17 | return { |