source dump of claude code
at main 12 lines 250 B view raw
1import type { Command } from '../../commands.js' 2 3const 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 12export default exit