@yamlresume/core
    Preparing search index...

    Type Alias DocNode

    Represents the root node of the document tree.

    type DocNode = {
        content?: any[];
        type: "doc";
    }
    Index

    Properties

    Properties

    content?: any[]

    The top-level block nodes (like ParagraphNode, BulletListNode, etc.) of the document.

    type: "doc"