UNPKG

as-toast

Version:

Simple and customizable toast notifications for Svelte

20 lines (19 loc) 629 B
import { SvelteComponentTyped } from "svelte"; import type { SvelteComponent } from 'svelte'; import Toast from './Toast.svelte'; declare const __propDef: { props: { toastComponent?: typeof Toast; cancelIcon?: typeof SvelteComponent; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export declare type ToastsProps = typeof __propDef.props; export declare type ToastsEvents = typeof __propDef.events; export declare type ToastsSlots = typeof __propDef.slots; export default class Toasts extends SvelteComponentTyped<ToastsProps, ToastsEvents, ToastsSlots> { } export {};