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