Interface represents an interface for an object received as parameter by Node class constructor.

interface RootProps {
    nodes?: (ChildProps | ChildNode)[];
    raws?: RootRaws;
    source?: Source;
}

Hierarchy (view full)

Properties

Properties

nodes?: (ChildProps | ChildNode)[]
raws?: RootRaws

Information used to generate byte-to-byte equal node string as it was in the origin input.

source?: Source