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.

19 lines (18 loc) 821 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { /** The list of dark themes to chose from, if not the list provided to `settings`. */ darkThemes?: string[]; /** The list of light themes to chose from, if not the list provided to `settings`. */ lightThemes?: string[]; /** Add keyboard shorts to quickly toggle color scheme and cycle themes */ keyboardShortcuts?: boolean; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type ThemeSelectProps = typeof __propDef.props; export type ThemeSelectEvents = typeof __propDef.events; export type ThemeSelectSlots = typeof __propDef.slots; export default class ThemeSelect extends SvelteComponentTyped<ThemeSelectProps, ThemeSelectEvents, ThemeSelectSlots> { } export {};