Newer
Older
cortex-hub / CaudeCodeSourceCode / cc-recovered-main / src / commands / output-style / index.ts
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