19 lines
595 B
TypeScript
19 lines
595 B
TypeScript
|
import { SvelteComponentTyped } from "svelte";
|
||
|
import type { ToastSettings } from './types.js';
|
||
|
declare const __propDef: {
|
||
|
props: {
|
||
|
toastSettings?: ToastSettings[] | undefined;
|
||
|
max?: number | undefined;
|
||
|
};
|
||
|
events: {
|
||
|
[evt: string]: CustomEvent<any>;
|
||
|
};
|
||
|
slots: {};
|
||
|
};
|
||
|
export type ToastTestProps = typeof __propDef.props;
|
||
|
export type ToastTestEvents = typeof __propDef.events;
|
||
|
export type ToastTestSlots = typeof __propDef.slots;
|
||
|
export default class ToastTest extends SvelteComponentTyped<ToastTestProps, ToastTestEvents, ToastTestSlots> {
|
||
|
}
|
||
|
export {};
|