@gip-recia/extended-uportal-header
Version:
a component to deport the uPortal menu
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