/ commands / export / index.ts
index.ts
 1  import type { Command } from '../../commands.js'
 2  
 3  const 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  
11  export default exportCommand