18 lines
545 B
TypeScript
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 {};
|