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.
22 lines (21 loc) • 575 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
overflowX: number;
overflowY: number;
};
};
};
export type OverflowProps = typeof __propDef.props;
export type OverflowEvents = typeof __propDef.events;
export type OverflowSlots = typeof __propDef.slots;
export default class Overflow extends SvelteComponentTyped<OverflowProps, OverflowEvents, OverflowSlots> {
}
export {};