UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

38 lines (37 loc) 941 B
/** @typedef {typeof __propDef.props} ImageProps */ /** @typedef {typeof __propDef.events} ImageEvents */ /** @typedef {typeof __propDef.slots} ImageSlots */ export default class Image extends SvelteComponentTyped<{ class?: string; style?: {}; header?: boolean; square?: boolean; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type ImageProps = typeof __propDef.props; export type ImageEvents = typeof __propDef.events; export type ImageSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string; style?: {}; header?: boolean; square?: boolean; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};