@avanio/variable-util
    Preparing search index...

    Type Alias OverrideKeyMap

    OverrideKeyMap: Record<string, string>

    Helper type to write override keys to config loaders

    v1.0.0

    type OverrideKeyMap = InferOverrideKeyMap<MainEnv & TestEnv>;
    // Example usage of OverrideKeyMap, where the keys are the original config keys and the values are the override keys
    const env = new EnvConfigLoader<OverrideKeyMap>(undefined, {PORT: 'HTTP_PORT'}); // get PORT value from process.env.HTTP_PORT