UNPKG

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.

28 lines (27 loc) 765 B
/** @typedef {typeof __propDef.props} ViewportCenterProps */ /** @typedef {typeof __propDef.events} ViewportCenterEvents */ /** @typedef {typeof __propDef.slots} ViewportCenterSlots */ export default class ViewportCenter extends SvelteComponentTyped<{ [x: string]: never; }, { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type ViewportCenterProps = typeof __propDef.props; export type ViewportCenterEvents = typeof __propDef.events; export type ViewportCenterSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: never; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};