transCore.d.ts 327 B

12345678
  1. import { I18nDictionary, LoaderConfig } from '.';
  2. import { Translate } from './index';
  3. export default function transCore({ config, allNamespaces, pluralRules, lang, }: {
  4. config: LoaderConfig;
  5. allNamespaces: Record<string, I18nDictionary>;
  6. pluralRules: Intl.PluralRules;
  7. lang: string | undefined;
  8. }): Translate;