mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-22 08:15:53 +00:00
7 lines
343 B
TypeScript
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'
|
|
});
|
|
}
|