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.
21 lines (20 loc) • 676 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
scrollIntoView: (options?: Parameters<(arg?: boolean | ScrollIntoViewOptions) => void>["0"]) => void;
};
};
};
export type ScrollContainerProps = typeof __propDef.props;
export type ScrollContainerEvents = typeof __propDef.events;
export type ScrollContainerSlots = typeof __propDef.slots;
export default class ScrollContainer extends SvelteComponentTyped<ScrollContainerProps, ScrollContainerEvents, ScrollContainerSlots> {
}
export {};