(command: string)
| 144 | >; |
| 145 | |
| 146 | export function getSchemaOnlyCliCommandSchema(command: string): CommandSchema | undefined { |
| 147 | return Object.hasOwn(SCHEMA_ONLY_CLI_COMMAND_SCHEMAS, command) |
| 148 | ? SCHEMA_ONLY_CLI_COMMAND_SCHEMAS[command as keyof typeof SCHEMA_ONLY_CLI_COMMAND_SCHEMAS] |
| 149 | : undefined; |
| 150 | } |
| 151 | |
| 152 | export function getCliCommandOverride(command: string): CommandSchemaOverride | undefined { |
| 153 | return Object.hasOwn(CLI_COMMAND_OVERRIDES, command) |