@hug/ngx-g11n
Version:
Angular helpers for internationalizing and localizing your application
13 lines (12 loc) • 341 B
TypeScript
import { type Provider } from '@angular/core';
import { type G11nOptions } from './models';
/**
* @internal
*/
export declare const DEFAULT_OPTIONS: G11nOptions;
export declare const currentLanguage: () => string;
export declare const setLanguage: (value: string) => void;
/**
* @internal
*/
export declare const init: () => Provider[];