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

    Interface DotenvFileProvenanceEntry

    Provenance entry representing a value sourced from a dotenv file in the cascade.

    interface DotenvFileProvenanceEntry {
        env?: string;
        file: string;
        kind: "file";
        op: DotenvProvenanceOp;
        path: string;
        privacy: "public" | "private";
        scope: "global" | "env";
    }

    Hierarchy (View Summary)

    Index

    Properties

    env?: string

    Environment name (required when scope is env).

    file: string

    The computed dotenv filename token (e.g., .env, .env.dev, .env.local, .env.dev.local).

    kind: "file"

    Discriminator.

    The operation applied at this layer.

    path: string

    The corresponding paths[] entry as provided by the caller/CLI. This is not an absolute path by policy.

    privacy: "public" | "private"

    Public vs private file.

    scope: "global" | "env"

    Global vs env-scoped file.