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

    Interface DotenvBareKeySegment

    A bare-key placeholder segment (e.g., KEY or KEY # comment).

    interface DotenvBareKeySegment {
        eol: "" | "\n" | "\r\n";
        key: string;
        kind: "bare";
        prefix: string;
        raw: string;
        suffix: string;
    }

    Hierarchy (View Summary)

    Index

    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).

    kind: "bare"

    Segment kind.

    prefix: string

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

    raw: string

    Raw text for the segment, including EOL tokens.

    suffix: string

    Trailing text after the key (spaces and/or inline comment). Preserved verbatim.