From 3098c31049e17dfdcdf451e843f6c4bdcf5b2fa1 Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Sat, 5 Aug 2023 21:16:45 +0100 Subject: Moves to root folder --- src/types/TranslationsDictionary.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/types/TranslationsDictionary.d.ts (limited to 'src/types/TranslationsDictionary.d.ts') diff --git a/src/types/TranslationsDictionary.d.ts b/src/types/TranslationsDictionary.d.ts new file mode 100644 index 0000000..7ebb952 --- /dev/null +++ b/src/types/TranslationsDictionary.d.ts @@ -0,0 +1,6 @@ +import type { defaultLocale } from "../i18n/locales"; +import type Locale from "./Locale"; + +type TranslationsDictionary = { + [key in Keys]: { [key in Locale]?: string } & { [key in typeof defaultLocale]: string } +}; \ No newline at end of file -- cgit v1.2.3