as-toast
Version:
Simple and customizable toast notifications for Svelte
18 lines (17 loc) • 535 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { Toast } from './toastStore';
declare const __propDef: {
props: {
type?: Toast['type'];
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export declare type CancelProps = typeof __propDef.props;
export declare type CancelEvents = typeof __propDef.events;
export declare type CancelSlots = typeof __propDef.slots;
export default class Cancel extends SvelteComponentTyped<CancelProps, CancelEvents, CancelSlots> {
}
export {};