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

    Interface ScalarNode

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

    Hierarchy (View Summary)

    Index

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

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