UNPKG

agnostic-svelte

Version:
32 lines (31 loc) 847 B
/** @typedef {typeof __propDef.props} ToastsProps */ /** @typedef {typeof __propDef.events} ToastsEvents */ /** @typedef {typeof __propDef.slots} ToastsSlots */ export default class Toasts extends SvelteComponentTyped<{ horizontalPosition: any; verticalPosition: any; portalRootSelector?: string; }, { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type ToastsProps = typeof __propDef.props; export type ToastsEvents = typeof __propDef.events; export type ToastsSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { horizontalPosition: any; verticalPosition: any; portalRootSelector?: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};