UNPKG

@startpage/theming

Version:

Create and use themes for your startpage

8 lines (7 loc) 231 B
/// <reference types="react" /> import { Theme } from "../Theme"; export type ThemeState = { theme: Theme; setTheme: (theme: Theme) => void; }; export declare const ThemeContext: import("react").Context<ThemeState>;