Graduation
/
ui
/node_modules
/@xyflow
/svelte
/dist
/lib
/components
/edges
/SmoothStepEdgeInternal.svelte.d.ts
/// <reference types=".pnpm/svelte@4.2.1/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 SmoothStepEdgeInternalProps = typeof __propDef.props; | |
export type SmoothStepEdgeInternalEvents = typeof __propDef.events; | |
export type SmoothStepEdgeInternalSlots = typeof __propDef.slots; | |
export default class SmoothStepEdgeInternal extends SvelteComponentTyped<SmoothStepEdgeInternalProps, SmoothStepEdgeInternalEvents, SmoothStepEdgeInternalSlots> { | |
} | |
export {}; | |