UNPKG

@prefecthq/prefect-design

Version:

A collection of low-level Vue components.

9 lines (8 loc) 220 B
import { Ref } from 'vue'; type ColorTheme = 'dark' | 'light'; export declare function useColorTheme(): { value: Ref<ColorTheme>; toggleTheme: () => void; setTheme: (theme: ColorTheme) => void; }; export {};