1 | import { Module } from "./modules/module.js";
|
2 | import { VNode } from "./vnode.js";
|
3 | import { DOMAPI } from "./htmldomapi.js";
|
4 | export type Options = {
|
5 | experimental?: {
|
6 | fragments?: boolean;
|
7 | };
|
8 | };
|
9 | export declare function init(modules: Array<Partial<Module>>, domApi?: DOMAPI, options?: Options): (oldVnode: VNode | Element | DocumentFragment, vnode: VNode) => VNode;
|