UNPKG

svelte-5-french-toast

Version:

Buttery smooth Svelte 5 toasts. Lightweight, customizable, and beautiful by default. Svelte 5 Only

9 lines (8 loc) 294 B
import type { DOMToast } from '../core/types'; interface Props { toast: DOMToast; setHeight: (height: number | undefined) => void; } declare const ToastWrapper: import("svelte").Component<Props, {}, "">; type ToastWrapper = ReturnType<typeof ToastWrapper>; export default ToastWrapper;