UNPKG

ilojo-bar-components

Version:

Ilojo Bar Component Library

17 lines (16 loc) 482 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { imgSource: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export declare type ImageProps = typeof __propDef.props; export declare type ImageEvents = typeof __propDef.events; export declare type ImageSlots = typeof __propDef.slots; export default class Image extends SvelteComponentTyped<ImageProps, ImageEvents, ImageSlots> { } export {};