@hug/ngx-g11n
Version:
Angular helpers for internationalizing and localizing your application
7 lines (6 loc) • 529 B
TypeScript
import { type EnvironmentProviders, type Provider } from '@angular/core';
import { type G11nFeature, type G11nLocale, type G11nOptions } from '@hug/ngx-g11n/internal';
export declare const withInterceptor: () => G11nFeature<EnvironmentProviders>;
export declare const withLocales: (locales: Record<string, G11nLocale>) => G11nFeature;
export declare const withOptions: (options: G11nOptions) => G11nFeature;
export declare const provideG11n: (...features: G11nFeature<Provider | EnvironmentProviders>[]) => EnvironmentProviders;