Files
claude-code/src/commands/ide/index.ts
nirholas 0da093fbec 🚇 index.ts
2026-03-31 10:23:02 +00:00

14 lines
260 B
TypeScript

import type { Command } from '../../commands.js'
const ide = {
type: 'local-jsx',
name: 'ide',
description: 'Manage IDE integrations and show status',
argumentHint: '[open]',
load: () => import('./ide.js'),
} satisfies Command
export default ide