Files
claude-code/src/commands/theme/index.ts
nirholas a06e8bc882 🪔 index.ts
2026-03-31 10:23:07 +00:00

13 lines
219 B
TypeScript

import type { Command } from '../../commands.js'
const theme = {
type: 'local-jsx',
name: 'theme',
description: 'Change the theme',
load: () => import('./theme.js'),
} satisfies Command
export default theme