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