import { Command } from '../commands' import { Help } from '../components/Help' import * as React from 'react' const help = { type: 'local-jsx', name: 'help', description: 'Show help and available commands', isEnabled: true, isHidden: false, async call(onDone, context) { return }, userFacingName() { return 'help' }, } satisfies Command export default help