UNPKG

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