Graduation
/
ui
/node_modules
/bits-ui
/dist
/bits
/alert-dialog
/components
/alert-dialog-portal.svelte.d.ts
import { SvelteComponent } from "svelte"; | |
import type { PortalProps } from "../types.js"; | |
declare const __propDef: { | |
props: PortalProps; | |
events: { | |
[evt: string]: CustomEvent<any>; | |
}; | |
slots: { | |
default: { | |
builder: { | |
'data-portal': string | undefined; | |
} & { | |
[x: `data-melt-${string}`]: ""; | |
} & { | |
action: <Node_2 extends unknown>(node: HTMLElement) => { | |
destroy(): void; | |
}; | |
}; | |
}; | |
}; | |
}; | |
export type AlertDialogPortalProps = typeof __propDef.props; | |
export type AlertDialogPortalEvents = typeof __propDef.events; | |
export type AlertDialogPortalSlots = typeof __propDef.slots; | |
export default class AlertDialogPortal extends SvelteComponent<AlertDialogPortalProps, AlertDialogPortalEvents, AlertDialogPortalSlots> { | |
} | |
export {}; | |