UNPKG

@es-react/react

Version:

Hippy react framework

12 lines (11 loc) 385 B
import Element from './element-node'; import ViewNode from './view-node'; declare class DocumentNode extends ViewNode { static createElement: Function; static createElementNS: Function; documentElement: Element; constructor(); createElement(tagName: string): Element; createElementNS(namespace: string, tagName: string): Element; } export default DocumentNode;