npm package diff

Package: @forge/manifest

Versions: 7.7.0-next.8-experimental-c7a7d36 - 7.7.0-next.11

File: package/out/utils/i18n/translation-value-getter.d.ts

Index: package/out/utils/i18n/translation-value-getter.d.ts
===================================================================
--- package/out/utils/i18n/translation-value-getter.d.ts
+++ package/out/utils/i18n/translation-value-getter.d.ts
@@ -0,0 +1,11 @@
+import { type ForgeSupportedLocaleCode } from '../../schema/manifest';
+interface TranslationContent {
+    [key: string]: string | TranslationContent;
+}
+declare type TranslationContentByLocaleCode = {
+    [key in ForgeSupportedLocaleCode]?: TranslationContent;
+};
+export declare const getTranslationValue: (translationLookup: TranslationContentByLocaleCode, i18nKey: string, locale: ForgeSupportedLocaleCode) => string | null;
+export declare const getTranslationValueFromContent: (translationContent: TranslationContent, i18nKey: string) => string | null;
+export {};
+//# sourceMappingURL=translation-value-getter.d.ts.map
\ No newline at end of file