UNPKG

horojs

Version:

A micro library for a reactive UI application.

7 lines (6 loc) 303 B
import { Instertion, Unsubscriber } from "../insertion/insertion"; type ArrayWithStringIndex<T> = T[] & { [index: string]: T; }; declare function makeItReactive(fragment: DocumentFragment, insertions: ArrayWithStringIndex<Instertion>): Unsubscriber; export { ArrayWithStringIndex, makeItReactive };