js-yaml - v5.4.1
    Preparing search index...

    Interface ScalarNode

    interface ScalarNode {
        tag: string;
        tagged: boolean;
        anchor?: string;
        commentBefore?: string;
        comment?: string;
        commentAfter?: string;
        blankBefore?: number;
        kind: "scalar";
        style: ScalarStyle;
        value: string;
    }

    Hierarchy (View Summary)

    Index

    YAML tag. Untagged nodes carry the semantic resolved tag; tagged nodes carry the printable/verbatim tag spelling.

    Whether to print the node's tag explicitly.

    Reserved for the formatting layer; not populated by the dumper yet.

    Preferred scalar style; the presenter may fall back when necessary.