UNPKG

ranui

Version:

A framework-agnostic Web Components UI library built on native custom elements, with TypeScript types, light/dark theming, SSR and PWA support.

5 lines (4 loc) 184 B
export type Lang = 'en' | 'zh'; export declare const getLang: () => Lang; export declare const setLang: (lang: Lang) => void; export declare const applyLanguage: (lang: Lang) => void;