(command: string | null)
| 25 | ); |
| 26 | |
| 27 | export function getCommandSchema(command: string | null): CommandSchema | undefined { |
| 28 | if (!command) return undefined; |
| 29 | return readCommandSchema(command); |
| 30 | } |
| 31 | |
| 32 | export function getCliCommandSchema(command: CliCommandName): CommandSchema { |
| 33 | const schema = readCommandSchema(command); |
no test coverage detected