svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
26 lines (25 loc) • 711 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
open?: boolean;
actions?: 'below' | 'right' | 'split';
closeIcon?: boolean;
};
events: {
close: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
icon: {};
title: {};
description: {};
actions: {};
};
};
export type NotificationProps = typeof __propDef.props;
export type NotificationEvents = typeof __propDef.events;
export type NotificationSlots = typeof __propDef.slots;
export default class Notification extends SvelteComponentTyped<NotificationProps, NotificationEvents, NotificationSlots> {
}
export {};