/** * Worker-side VDOM module. * * This module provides the reconciler and utilities for worker-thread * VDOM rendering. It emits VDomOp operations that are sent to the main * thread for DOM application. */ export { WorkerReconciler } from "./reconciler.ts"; export { generateChildKeys, generateKey, keysMatch } from "./keying.ts"; export type { BindingCellRef, ChildNodeState, NodeState, ReconcileContext, WorkerJSXElement, WorkerProps, WorkerReconcilerOptions, WorkerRenderNode, WorkerVNode, } from "./types.ts"; export { isWorkerVNode } from "./types.ts";