svantic
Version:
A set of Fomantic-UI components for Svelte framework
62 lines (61 loc) • 1.52 kB
TypeScript
/** @typedef {typeof __propDef.props} ImageProps */
/** @typedef {typeof __propDef.events} ImageEvents */
/** @typedef {typeof __propDef.slots} ImageSlots */
export default class Image extends SvelteComponentTyped<{
class?: string;
style?: {};
aligned?: string;
floated?: string;
size?: string;
circular?: boolean;
state?: string;
fluid?: boolean;
centered?: boolean;
bordered?: boolean;
src?: string;
alt?: string;
round?: boolean;
space?: boolean;
avatar?: boolean;
middle?: 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?: {};
aligned?: string;
floated?: string;
size?: string;
circular?: boolean;
state?: string;
fluid?: boolean;
centered?: boolean;
bordered?: boolean;
src?: string;
alt?: string;
round?: boolean;
space?: boolean;
avatar?: boolean;
middle?: boolean;
};
events: {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};