Type Alias: InferMaxmindReader<Config>
ts
type InferMaxmindReader<Config> =
InferMaxmindEdition<Config> extends never
? undefined
: Reader<InferMaxmindEdition<Config>>;A utility type that infers the MaxMind reader type based on the specified edition in the configuration. If the edition is not specified or does not match any known editions, it resolves to undefined.
Type Parameters
| Type Parameter |
|---|
Config extends AdonisMaxmindConfig |