index.ts
1 import type { Command } from '../../commands.js' 2 3 const rewind = { 4 description: `Restore the code and/or conversation to a previous point`, 5 name: 'rewind', 6 aliases: ['checkpoint'], 7 argumentHint: '', 8 type: 'local', 9 supportsNonInteractive: false, 10 load: () => import('./rewind.js'), 11 } satisfies Command 12 13 export default rewind