jstd-web/node_modules/snabbdom/build/helpers/attachto.d.ts

9 lines
224 B
TypeScript
Raw Normal View History

2025-11-25 15:23:22 +08:00
import { VNode } from "../vnode";
export interface AttachData {
[key: string]: any;
[i: number]: any;
placeholder?: any;
real?: Node;
}
export declare function attachTo(target: Element, vnode: VNode): VNode;