attachto.d.ts 227 B

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