the claude code sourcemaps leaked march 31
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 11 lines 303 B view raw
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