preline
Version:
Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.
16 lines (13 loc) • 301 B
text/typescript
export interface IThemeSwitchOptions {
theme?: 'dark' | 'light' | 'default';
type?: 'change' | 'click';
}
export interface IThemeSwitch {
options?: IThemeSwitchOptions;
setAppearance(
theme: string,
isSaveToLocalStorage: boolean,
isSetDispatchEvent: boolean,
): void;
destroy(): void;
}