UNPKG

svelte-daisy-toaster

Version:

Svelte DaisyUI Toast Component

11 lines (10 loc) 324 B
import type { Toast as ToastType } from './toast-state.svelte.js'; type $$ComponentProps = { toast: ToastType; isAnimate?: boolean; position?: string; isBlur?: boolean; }; declare const Toast: import("svelte").Component<$$ComponentProps, {}, "">; type Toast = ReturnType<typeof Toast>; export default Toast;