@cartamd/plugin-attachment
Version:
This plugin adds support for attachments. Install it using:
15 lines (14 loc) • 508 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: Record<string, never>;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type LoadingOverlayProps = typeof __propDef.props;
export type LoadingOverlayEvents = typeof __propDef.events;
export type LoadingOverlaySlots = typeof __propDef.slots;
export default class LoadingOverlay extends SvelteComponentTyped<LoadingOverlayProps, LoadingOverlayEvents, LoadingOverlaySlots> {
}
export {};