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

    Type Alias GetDotenvConfigResolved

    type GetDotenvConfigResolved = {
        dynamic?: unknown;
        envVars?: Record<string, Record<string, string>>;
        plugins?: Record<string, unknown>;
        requiredKeys?: string[];
        rootOptionDefaults?: Partial<RootOptionsShape>;
        rootOptionVisibility?: Partial<Record<keyof RootOptionsShape, boolean>>;
        schema?: unknown;
        scripts?: Scripts;
        vars?: Record<string, string>;
    }
    Index

    Properties

    dynamic?: unknown

    Dynamic variable definitions (JS/TS configs only).

    envVars?: Record<string, Record<string, string>>

    Public per‑environment variables (string‑only).

    plugins?: Record<string, unknown>

    Per‑plugin configuration slices keyed by realized mount path (for example, "aws/whoami").

    requiredKeys?: string[]

    Keys required to be present in the final composed environment. Validation occurs after overlays and dynamics.

    rootOptionDefaults?: Partial<RootOptionsShape>

    Help-time/runtime root defaults applied by the host (collapsed families; CLI‑like).

    rootOptionVisibility?: Partial<Record<keyof RootOptionsShape, boolean>>

    Help-time visibility for root flags; when a key is false the corresponding option(s) are hidden in root help output.

    schema?: unknown

    Optional validation schema (e.g., Zod). When present and it exposes safeParse(finalEnv), the host executes it once after overlays.

    scripts?: Scripts

    Merged scripts table for resolving commands and shell behavior. Entries may be strings or objects with cmd and optional shell.

    vars?: Record<string, string>

    Public global variables (string‑only).