(type: ExtendedConstructedCommandOptions["type"])
| 161 | ]; |
| 162 | |
| 163 | export function convFlagType(type: ExtendedConstructedCommandOptions["type"]): Constants.ApplicationCommandOptionTypes { |
| 164 | if (typeof type === "number") return type; |
| 165 | return flagMap.indexOf(type); |
| 166 | } |
| 167 | |
| 168 | /** |
| 169 | * Convert command flags to params |
no outgoing calls
no test coverage detected