UNPKG

@selenite/commons

Version:

This typescript package provides a set of frequently used utilities, types and svelte actions for building projects with Typescript and Svelte.

8 lines (7 loc) 233 B
interface Props { themes?: string[]; theme?: string; } declare const ThemeController: import("svelte").Component<Props, {}, "theme">; type ThemeController = ReturnType<typeof ThemeController>; export default ThemeController;