UNPKG

305 BTypeScriptView Raw
1import { Module } from './modules/module';
2import { VNode } from './vnode';
3import { DOMAPI } from './htmldomapi';
4export { h } from './h';
5export { thunk } from './thunk';
6export declare function init(modules: Array<Partial<Module>>, domApi?: DOMAPI): (oldVnode: Element | VNode, vnode: VNode) => VNode;