forked from
oppi.li/claude-code
source dump of claude code
1import type { Command } from '../../commands.js'
2
3const 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
13export default rewind