aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Locale
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Locale')
-rw-r--r--src/lib/Locale/layout.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Locale/layout.ts b/src/lib/Locale/layout.ts
index 05e36daf..59862632 100644
--- a/src/lib/Locale/layout.ts
+++ b/src/lib/Locale/layout.ts
@@ -1,4 +1,4 @@
-type LocaleValue = string | LocaleValue[]; // | { [key: string]: LocaleValue };
+type LocaleValue = string; // | LocaleValue[] | { [key: string]: LocaleValue };
export interface LocaleDictionary {
[key: string]: LocaleDictionary | string | Array<string | LocaleDictionary> | null;