(key: FlagKey)
| 939 | } |
| 940 | |
| 941 | function flagDefinitionsForKey(key: FlagKey): FlagDefinition[] { |
| 942 | return getFlagDefinitions().filter((definition) => definition.key === key); |
| 943 | } |
| 944 | |
| 945 | function buildCommandListUsage(commandName: string, schema: CommandSchema): string { |
| 946 | if (schema.listUsageOverride) return schema.listUsageOverride; |
no test coverage detected