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

    Interface TraceChildEnvOptions

    Options for tracing composed child environment variables.

    Presentation-only: values are never mutated; output is written to write.

    interface TraceChildEnvOptions {
        dotenv: ProcessEnv;
        entropyMinLength?: number;
        entropyThreshold?: number;
        entropyWhitelist?: (string | RegExp)[];
        keys?: string[];
        parentEnv: ProcessEnv;
        redact?: boolean;
        redactPatterns?: (string | RegExp)[];
        warnEntropy?: boolean;
        write: (line: string) => void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    dotenv: ProcessEnv

    Composed dotenv map (target).

    entropyMinLength?: number

    Minimum string length to check.

    entropyThreshold?: number

    Entropy threshold (bits/char).

    entropyWhitelist?: (string | RegExp)[]

    Whitelist of regex patterns to ignore.

    keys?: string[]

    Optional subset of keys to trace. When omitted, all keys are traced.

    parentEnv: ProcessEnv

    Parent process environment (source).

    redact?: boolean

    Enable redaction.

    redactPatterns?: (string | RegExp)[]

    Regex patterns for keys to redact.

    warnEntropy?: boolean

    Enable entropy warnings.

    write: (line: string) => void

    Sink for trace lines (e.g., write to stderr).