Files
claude-code/src/commands/export/index.ts
nirholas f8e7906d96 🕋 index.ts
2026-03-31 10:23:01 +00:00

14 lines
305 B
TypeScript

import type { Command } from '../../commands.js'
const exportCommand = {
type: 'local-jsx',
name: 'export',
description: 'Export the current conversation to a file or clipboard',
argumentHint: '[filename]',
load: () => import('./export.js'),
} satisfies Command
export default exportCommand