You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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 {};