index.ts 314 B

12345678910111213
  1. import type { Command } from '../../commands.js'
  2. const btw = {
  3. type: 'local-jsx',
  4. name: 'btw',
  5. description:
  6. 'Ask a quick side question without interrupting the main conversation',
  7. immediate: true,
  8. argumentHint: '<question>',
  9. load: () => import('./btw.js'),
  10. } satisfies Command
  11. export default btw