File size: 464 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
visible: boolean;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type LoaderProps = typeof __propDef.props;
export type LoaderEvents = typeof __propDef.events;
export type LoaderSlots = typeof __propDef.slots;
export default class Loader extends SvelteComponentTyped<LoaderProps, LoaderEvents, LoaderSlots> {
}
export {};
|