12 lines
291 B
TypeScript
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
|