UNPKG

ilojo-bar-components

Version:

Ilojo Bar Component Library

32 lines (31 loc) 918 B
/** @typedef {typeof __propDef.props} StoryPlateBtnProps */ /** @typedef {typeof __propDef.events} StoryPlateBtnEvents */ /** @typedef {typeof __propDef.slots} StoryPlateBtnSlots */ export default class StoryPlateBtn extends SvelteComponentTyped<{ storyLink: string; storyLinkText: string; height: string; storyPlateImage: string; color: string; }, { [evt: string]: CustomEvent<any>; }, {}> { } export type StoryPlateBtnProps = typeof __propDef.props; export type StoryPlateBtnEvents = typeof __propDef.events; export type StoryPlateBtnSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { storyLink: string; storyLinkText: string; height: string; storyPlateImage: string; color: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export {};