@bitrix24/b24ui-nuxt
Version:
Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE
20 lines (19 loc) • 546 B
TypeScript
/**
* `@vueuse/core` color-mode integration
* @memo We not use `@nuxtjs/color-mode`
*/
export declare const useColorMode: () => {
forced: boolean;
modeKeysList?: undefined;
colorModeInitialValue?: undefined;
colorModeTypeLight?: undefined;
preference?: undefined;
readonly value?: undefined;
} | {
modeKeysList: ("auto" | "edge-dark" | "edge-light" | "dark" | "light")[];
colorModeInitialValue: string;
colorModeTypeLight: string;
preference: string;
readonly value: string;
forced: boolean;
};