theme-editor-svelte
Version:
Universal theme editor for svelte
13 lines (12 loc) • 405 B
TypeScript
import '../../lib.css';
interface Props {
/**
* Prefix for the local storage variable
*
* **⚠️Important**: _This variable is not reactive, so you should not change it after the component is mounted._
* */
project: string;
}
declare const ThemeEditor: import("svelte").Component<Props, {}, "">;
type ThemeEditor = ReturnType<typeof ThemeEditor>;
export default ThemeEditor;