From b6df2c038e77a00524ede2209e3798f4ae249c63 Mon Sep 17 00:00:00 2001 From: Amatsune Date: Mon, 24 Jun 2024 09:54:21 +0200 Subject: [PATCH] locales interface fixes (cherry picked from commit d8f05bbb343203f5cd456085de5d3637d346e29e) --- src/interfaces/locales.ts | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/interfaces/locales.ts b/src/interfaces/locales.ts index afabbae4364..8de3af8ee2e 100644 --- a/src/interfaces/locales.ts +++ b/src/interfaces/locales.ts @@ -10,13 +10,11 @@ export interface SimpleTranslationEntries { } export interface FusionTranslationEntries { - [key: string]: FusionTranslationEntry, - } - -export interface FusionTranslationEntry { - fusionPrefix: string, - fusionSuffix: string, - } + [key: string]: { + fusionPrefix: string; + fusionSuffix: string; + }; + } export interface MoveTranslationEntry { name: string,