UNPKG

@doku-dev/doku-fragment

Version:

A new Angular UI library that moving away from Bootstrap and built from scratch.

18 lines (17 loc) 468 B
import { EnvironmentProviders } from '@angular/core'; interface I18nProviderOptions { /** * The name of the locale or language to be retrieved. * * @default 'selected-language' */ key?: string; /** * Public directory where locales to be fetched. * * @default "assets/locales" */ localeDirectoryPath?: string; } export declare function provideI18n(options?: I18nProviderOptions): EnvironmentProviders; export {};