UNPKG

boa-vdom

Version:

A virtual dom library for b-o-a

14 lines (13 loc) 278 B
import { VDOM } from './vdom'; export declare type RDOM = any; export declare type Render = (vdom: VDOM) => { result: RDOM; render: Render; }; declare const init: (options: { root: any; }) => (vdom: any) => { result: any; render: Render; }; export { init };