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.

18 lines
545 B
TypeScript

import { SvelteComponentTyped } from "svelte";
import type { ModalSettings } from './types.js';
declare const __propDef: {
props: {
modalSetting: ModalSettings;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ModalTestProps = typeof __propDef.props;
export type ModalTestEvents = typeof __propDef.events;
export type ModalTestSlots = typeof __propDef.slots;
export default class ModalTest extends SvelteComponentTyped<ModalTestProps, ModalTestEvents, ModalTestSlots> {
}
export {};