@helpwave/hightide
Version:
helpwave's component and theming library
19 lines (17 loc) • 424 B
text/typescript
/**
* The supported languages
*/
declare const languages: readonly ["en", "de"];
/**
* The supported languages
*/
type Language = typeof languages[number];
/**
* A constant definition for holding data regarding languages
*/
declare const LanguageUtil: {
languages: readonly ["en", "de"];
DEFAULT_LANGUAGE: "en";
languagesLocalNames: Record<"en" | "de", string>;
};
export { type Language, LanguageUtil };