mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 14:06:57 +10:00
13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
import type { Command } from '../../commands.js'
|
|
|
|
const exit = {
|
|
type: 'local-jsx',
|
|
name: 'exit',
|
|
aliases: ['quit'],
|
|
description: 'Exit the REPL',
|
|
immediate: true,
|
|
load: () => import('./exit.js'),
|
|
} satisfies Command
|
|
|
|
export default exit
|