index.ts
1 import type { Command } from '../../commands.js' 2 3 const tasks = { 4 type: 'local-jsx', 5 name: 'tasks', 6 aliases: ['bashes'], 7 description: 'List and manage background tasks', 8 load: () => import('./tasks.js'), 9 } satisfies Command 10 11 export default tasks