the claude code sourcemaps leaked march 31
1import type { Command } from '../../commands.js'
2
3const exportCommand = {
4 type: 'local-jsx',
5 name: 'export',
6 description: 'Export the current conversation to a file or clipboard',
7 argumentHint: '[filename]',
8 load: () => import('./export.js'),
9} satisfies Command
10
11export default exportCommand