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.
29 lines (28 loc) • 859 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
value?: number | undefined;
single?: boolean | undefined;
format?: ((value: number) => string | number) | undefined;
axis?: "x" | "y" | undefined;
classes?: {
root?: string;
value?: string;
} | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
value: number;
};
};
};
export type ScrollingValueProps = typeof __propDef.props;
export type ScrollingValueEvents = typeof __propDef.events;
export type ScrollingValueSlots = typeof __propDef.slots;
export default class ScrollingValue extends SvelteComponentTyped<ScrollingValueProps, ScrollingValueEvents, ScrollingValueSlots> {
}
export {};