UNPKG

@bonosoft/sveltekit-timeline

Version:
29 lines (28 loc) 956 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { status?: string | undefined; doneColor?: string | undefined; doneBorderColor?: string | undefined; readyColor?: string | undefined; readyBorderColor?: string | undefined; waitColor?: string | undefined; waitBorderColor?: string | undefined; color?: string | undefined; borderColor?: string | undefined; size?: string | undefined; linewidth?: string | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type TimelineitemProps = typeof __propDef.props; export type TimelineitemEvents = typeof __propDef.events; export type TimelineitemSlots = typeof __propDef.slots; export default class Timelineitem extends SvelteComponentTyped<TimelineitemProps, TimelineitemEvents, TimelineitemSlots> { } export {};