File size: 294 Bytes
831f7e7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import { en } from './en';
import { fr } from './fr';
import { de } from './de';
import { it } from './it';
import { es } from './es';
export const translations = {
en,
fr,
de,
it,
es
} as const;
export type Language = keyof typeof translations;
export type Translation = typeof en; |