Prelude API
    Preparing search index...

    Type Alias Document

    type Document = {
        declaration: undefined | Declaration;
        epilogue: (ProcessingInstruction | Comment)[];
        prelude: (ProcessingInstruction | Doctype | Comment)[];
        root: Element;
        type: "Document";
    }
    Index
    declaration: undefined | Declaration

    Comments and processing instructions after the root element, in order.

    Comments, processing instructions and the doctype before the root element, in order.

    root: Element
    type: "Document"