1import type { Command } from '../../commands.js'
2
3const 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
11export default tasks