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

    Interface MappingNode

    interface MappingNode {
        tag: string;
        style: Style;
        anchor?: string;
        commentBefore?: string;
        comment?: string;
        commentAfter?: string;
        blankBefore?: number;
        kind: "mapping";
        items: { key: Node; value: Node }[];
    }

    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.