/ commands / theme / index.ts
index.ts
 1  import type { Command } from '../../commands.js'
 2  
 3  const theme = {
 4    type: 'local-jsx',
 5    name: 'theme',
 6    description: 'Change the theme',
 7    load: () => import('./theme.js'),
 8  } satisfies Command
 9  
10  export default theme