Files
claude-code/src/commands/btw/index.ts
nirholas b795009ee4 🌍 index.ts
2026-03-31 10:22:42 +00:00

15 lines
315 B
TypeScript

import type { Command } from '../../commands.js'
const btw = {
type: 'local-jsx',
name: 'btw',
description:
'Ask a quick side question without interrupting the main conversation',
immediate: true,
argumentHint: '<question>',
load: () => import('./btw.js'),
} satisfies Command
export default btw