Graduation
/
ui
/node_modules
/@xyflow
/svelte
/dist
/lib
/plugins
/Controls
/ControlButton.svelte.d.ts
/// <reference types=".pnpm/[email protected]/node_modules/svelte" /> | |
import { SvelteComponentTyped } from "svelte"; | |
import type { ControlButtonProps } from './types'; | |
declare const __propDef: { | |
props: ControlButtonProps; | |
events: { | |
click: MouseEvent; | |
} & { | |
[evt: string]: CustomEvent<any>; | |
}; | |
slots: { | |
default: { | |
class: string; | |
}; | |
}; | |
}; | |
type ControlButtonProps_ = typeof __propDef.props; | |
export { ControlButtonProps_ as ControlButtonProps }; | |
export type ControlButtonEvents = typeof __propDef.events; | |
export type ControlButtonSlots = typeof __propDef.slots; | |
export default class ControlButton extends SvelteComponentTyped<ControlButtonProps_, ControlButtonEvents, ControlButtonSlots> { | |
} | |