summaryrefslogtreecommitdiff
path: root/src/types/TranslationsDictionary.d.ts
blob: 5a8a25165e6b0d8950171eba5b9710b3a64a1818 (plain)
1
2
3
4
5
6
import type { defaultLocale } from '../i18n/locales';
import type Locale from './Locale';

type TranslationsDictionary<Keys> = {
  [key in Keys]: { [key in Locale]?: string } & { [key in typeof defaultLocale]: string };
};