Graduation
/
ui
/node_modules
/@xyflow
/svelte
/dist
/lib
/components
/edges
/BezierEdgeInternal.svelte.d.ts
/// <reference types=".pnpm/[email protected]/node_modules/svelte" /> | |
import { SvelteComponentTyped } from "svelte"; | |
import type { EdgeProps } from '../../types'; | |
declare const __propDef: { | |
props: EdgeProps; | |
events: { | |
[evt: string]: CustomEvent<any>; | |
}; | |
slots: {}; | |
}; | |
export type BezierEdgeInternalProps = typeof __propDef.props; | |
export type BezierEdgeInternalEvents = typeof __propDef.events; | |
export type BezierEdgeInternalSlots = typeof __propDef.slots; | |
export default class BezierEdgeInternal extends SvelteComponentTyped<BezierEdgeInternalProps, BezierEdgeInternalEvents, BezierEdgeInternalSlots> { | |
} | |
export {}; | |