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