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