UNPKG

224 BTypeScriptView Raw
1import { VNode } from "../vnode";
2export interface AttachData {
3 [key: string]: any;
4 [i: number]: any;
5 placeholder?: any;
6 real?: Node;
7}
8export declare function attachTo(target: Element, vnode: VNode): VNode;