index.ts
1 import type { Command } from '../../commands.js' 2 3 const exit = { 4 type: 'local-jsx', 5 name: 'exit', 6 aliases: ['quit'], 7 description: 'Exit the REPL', 8 immediate: true, 9 load: () => import('./exit.js'), 10 } satisfies Command 11 12 export default exit