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

    Type Alias EnvMapSchema<Output>

    EnvMapSchema: {
        [K in keyof Required<Output>]: undefined extends Output[K]
            ? OptionalEnvEntry<Output[K]>
            : RequiredEnvEntry<Output[K]> | RequiredUndefinedThrowEntry<Output[K]>
    }

    Environment map schema

    Type Parameters

    • Output extends Record<string, unknown>

      type of output value

    v0.2.15