svelte-ux
Version:
A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.
34 lines (33 loc) • 1.06 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
start?: string | number | boolean | undefined;
end?: string | number | boolean | undefined;
icon?: string | import("@fortawesome/fontawesome-common-types").IconDefinition | null | undefined;
completed?: boolean | undefined;
classes?: {
root?: string;
start?: string;
end?: string;
point?: string;
icon?: string;
line?: string;
} | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
start: {};
point: {};
end: {};
};
};
export type TimelineEventProps = typeof __propDef.props;
export type TimelineEventEvents = typeof __propDef.events;
export type TimelineEventSlots = typeof __propDef.slots;
export default class TimelineEvent extends SvelteComponentTyped<TimelineEventProps, TimelineEventEvents, TimelineEventSlots> {
}
export {};