File size: 838 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { SvelteComponentTyped } from "svelte";
import type { ToasterProps } from './types.js';
declare const __propDef: {
    props: ToasterProps;
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        'loading-icon': {
            slot: string;
        };
        'success-icon': {
            slot: string;
        };
        'error-icon': {
            slot: string;
        };
        'warning-icon': {
            slot: string;
        };
        'info-icon': {
            slot: string;
        };
    };
};
type ToasterProps_ = typeof __propDef.props;
export { ToasterProps_ as ToasterProps };
export type ToasterEvents = typeof __propDef.events;
export type ToasterSlots = typeof __propDef.slots;
export default class Toaster extends SvelteComponentTyped<ToasterProps, ToasterEvents, ToasterSlots> {
}