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

    Interface SequenceNode

    interface SequenceNode {
        tag: string;
        tagged: boolean;
        anchor?: string;
        commentBefore?: string;
        comment?: string;
        commentAfter?: string;
        blankBefore?: number;
        kind: "sequence";
        style: CollectionStyle;
        items: Node[];
    }

    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.