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

    Interface DotenvKeySegmentBase

    Common fields for key-bearing segments (assignment or bare-key placeholder).

    interface DotenvKeySegmentBase {
        eol: "" | "\n" | "\r\n";
        key: string;
        prefix: string;
        raw: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    eol: "" | "\n" | "\r\n"

    Trailing EOL token for the last physical line of this segment. For segments that end at EOF without a trailing newline, this is ''.

    key: string

    The parsed key name (e.g., APP_SETTING).

    prefix: string

    Prefix before the key (indentation and optional export token). Preserved verbatim.

    raw: string

    Raw text for the segment, including EOL tokens.