@cartamd/plugin-attachment
Version:
This plugin adds support for attachments. Install it using:
24 lines (23 loc) • 700 B
TypeScript
/** @typedef {typeof __propDef.props} SpinnerIconProps */
/** @typedef {typeof __propDef.events} SpinnerIconEvents */
/** @typedef {typeof __propDef.slots} SpinnerIconSlots */
export default class SpinnerIcon extends SvelteComponentTyped<{
[x: string]: never;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type SpinnerIconProps = typeof __propDef.props;
export type SpinnerIconEvents = typeof __propDef.events;
export type SpinnerIconSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: never;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};