UNPKG

svelte-ux

Version:

- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`

22 lines (21 loc) 665 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title: string; description: string; message?: string; stackTrace?: string; }; events: { close: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type ErrorNotificationProps = typeof __propDef.props; export type ErrorNotificationEvents = typeof __propDef.events; export type ErrorNotificationSlots = typeof __propDef.slots; export default class ErrorNotification extends SvelteComponentTyped<ErrorNotificationProps, ErrorNotificationEvents, ErrorNotificationSlots> { } export {};