Files
claude-code/src/commands/output-style/output-style.tsx
2026-03-31 23:03:47 +08:00

7 lines
343 B
TypeScript

import type { LocalJSXCommandOnDone } from '../../types/command.js';
export async function call(onDone: LocalJSXCommandOnDone): Promise<undefined> {
onDone('/output-style has been deprecated. Use /config to change your output style, or set it in your settings file. Changes take effect on the next session.', {
display: 'system'
});
}