svelte-5-french-toast
Version:
Buttery smooth Svelte 5 toasts. Lightweight, customizable, and beautiful by default. Svelte 5 Only
11 lines (10 loc) • 369 B
TypeScript
import { SvelteComponent } from "svelte";
import type { Toast, ToastPosition } from '../core/types';
interface Props {
toast: Toast;
position: ToastPosition | undefined;
Component?: typeof SvelteComponent | undefined;
}
declare const ToastBar: import("svelte").Component<Props, {}, "">;
type ToastBar = ReturnType<typeof ToastBar>;
export default ToastBar;