@gip-recia/eyebrow-user-info-lit
Version:
Web component to display into eyebrow menu a user information menu with profile picture and more.
20 lines • 600 B
TypeScript
export interface LangRef {
locales: string[];
messages: {
message: {
[]: {
[]: string;
};
};
};
}
export default class langHelper {
private static locale;
private static reference;
static setLocale(lang: string): void;
static setReference(ref: LangRef[]): void;
static getBrowserLocales(options?: {}): string[];
static getPageLang(options?: {}): string;
static localTranslation(stringId: string, defaultString: string): string;
}
//# sourceMappingURL=langHelper.d.ts.map