UNPKG

ilojo-bar-components

Version:

Ilojo Bar Component Library

18 lines (17 loc) 497 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { link: string; linkTitle: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export declare type LinkProps = typeof __propDef.props; export declare type LinkEvents = typeof __propDef.events; export declare type LinkSlots = typeof __propDef.slots; export default class Link extends SvelteComponentTyped<LinkProps, LinkEvents, LinkSlots> { } export {};