@hug/ngx-g11n
Version:
Angular helpers for internationalizing and localizing your application
7 lines (6 loc) • 438 B
TypeScript
import { InjectionToken } from '@angular/core';
import type { G11nLocale, G11nOptions } from './models';
export declare const LOCALES: InjectionToken<Record<string, G11nLocale>>;
export declare const G11N_OPTIONS: InjectionToken<G11nOptions>;
export { type DefaultModuleImport, type G11nLocale, type G11nOptions, type G11nFeature, G11nDebug } from './models';
export { currentLanguage, setLanguage, init, DEFAULT_OPTIONS } from './main';