Files
claude-code/src/commands/ide/index.ts
nirholas 05a747e2c7 🚇 index.ts
2026-03-31 10:22:47 +00:00

13 lines
259 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