UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

36 lines (35 loc) 914 B
/** @typedef {typeof __propDef.props} LinkProps */ /** @typedef {typeof __propDef.events} LinkEvents */ /** @typedef {typeof __propDef.slots} LinkSlots */ export default class Link extends SvelteComponentTyped<{ style: any; link?: string; class?: string; src?: string; alt?: string; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, {}> { } export type LinkProps = typeof __propDef.props; export type LinkEvents = typeof __propDef.events; export type LinkSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { style: any; link?: string; class?: string; src?: string; alt?: string; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export {};