@nuxt/devtools
Version:
<a href="https://devtools.nuxt.com"><img width="1200" alt="Nuxt DevTools" src="https://github-production-user-asset-6210df.s3.amazonaws.com/904724/261577617-a10567bd-ad33-48cc-9bda-9e37dbe1929f.png"></a> <br>
13 lines (12 loc) • 457 B
TypeScript
import type { Ref } from 'vue';
import type { Router } from 'vue-router';
declare const clientRef: import("vue").ShallowRef<any>;
export { clientRef as client };
export type ColorScheme = 'dark' | 'light';
export declare function setupDevToolsClient({ nuxt, clientHooks, timeMetric, router, }: {
nuxt: any;
clientHooks: any;
timeMetric: any;
router: Router;
}): Promise<void>;
export declare function useClientColorMode(): Ref<ColorScheme>;