Interface DocumentNode

interface DocumentNode {
    children: Children;
    docType: string;
    type: "document";
}

Properties

Properties

children: Children
docType: string
type: "document"