/// <reference types=".pnpm/[email protected]/node_modules/svelte" /> | |
import { SvelteComponentTyped } from "svelte"; | |
declare const __propDef: { | |
props: Pick<import("../../types").Node<Record<string, unknown>, string>, "id" | "data" | "width" | "height" | "sourcePosition" | "targetPosition" | "selected" | "dragHandle" | "selectable" | "deletable" | "draggable" | "parentId"> & Required<Pick<import("../../types").Node<Record<string, unknown>, string>, "type" | "dragging" | "zIndex">> & { | |
isConnectable: boolean; | |
positionAbsoluteX: number; | |
positionAbsoluteY: number; | |
} & { | |
type: any; | |
}; | |
events: { | |
[evt: string]: CustomEvent<any>; | |
}; | |
slots: {}; | |
}; | |
export type GroupNodeProps = typeof __propDef.props; | |
export type GroupNodeEvents = typeof __propDef.events; | |
export type GroupNodeSlots = typeof __propDef.slots; | |
export default class GroupNode extends SvelteComponentTyped<GroupNodeProps, GroupNodeEvents, GroupNodeSlots> { | |
} | |
export {}; | |