UNPKG

@ayonli/jsext

Version:

A JavaScript extension package for building strong and modern applications.

9 lines (8 loc) 260 B
export type ColorTheme = "light" | "dark"; export declare function useColorTheme(): { theme: ColorTheme; onChange: (callback: (theme: "light" | "dark") => void) => void; }; export declare function i18n(locale: { [lang: string]: string; }): string;