blob: 7ebb952d2dfba1cf7488b5c6a2badb431502e187 (
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 }
};
|