claude/commands/output-style/index.ts
kuberwastaken ec53fcbe95 init
2026-03-31 16:25:52 +05:30

12 lines
291 B
TypeScript

import type { Command } from '../../commands.js'
const outputStyle = {
type: 'local-jsx',
name: 'output-style',
description: 'Deprecated: use /config to change output style',
isHidden: true,
load: () => import('./output-style.js'),
} satisfies Command
export default outputStyle