@karmaniverous/get-dotenv
    Preparing search index...

    Interface OverlayEnvOptionsBase<B>

    Base options for overlaying config-provided values onto a dotenv map.

    interface OverlayEnvOptionsBase<
        B extends
            | Record<string, string | undefined>
            | Readonly<Record<string, string | undefined>>,
    > {
        base: B;
        configs: OverlayConfigSources;
        env: string
        | undefined;
    }

    Type Parameters

    • B extends
          | Record<string, string | undefined>
          | Readonly<Record<string, string | undefined>>

      base env shape

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    base: B

    Base environment variables.

    Configuration sources to overlay.

    env: string | undefined

    Target environment name.