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