@forge/cli-shared
8.24.08.24.0-experimental-04cc2b9
out/service/i18n-resource-bundling-service.d.ts~
out/service/i18n-resource-bundling-service.d.tsModified+2−4
Index: package/out/service/i18n-resource-bundling-service.d.ts
===================================================================
--- package/out/service/i18n-resource-bundling-service.d.ts
+++ package/out/service/i18n-resource-bundling-service.d.ts
@@ -1,15 +1,13 @@
-/// <reference types="node" />
-/// <reference types="node" />
import { type Modules, type Translations, type ForgeSupportedLocaleCode } from '@forge/manifest';
-export declare type I18nResourceBundle = {
+export type I18nResourceBundle = {
path: string;
exists: true;
} | {
exists: false;
};
export declare const EMPTY_I18N_RESOURCE_BUNDLE: I18nResourceBundle;
-declare type I18nResourceFileAccessor = (resourceKey: ForgeSupportedLocaleCode | string) => Promise<Buffer | null>;
+type I18nResourceFileAccessor = (resourceKey: ForgeSupportedLocaleCode | string) => Promise<Buffer | null>;
export declare const listFilesInI18nResourceBundle: (i18nResourceBundle: I18nResourceBundle) => [string, string][];
export declare class I18nResourceBundlingService {
private copyLocaleFilesToBundleDir;
private createI18nInfoFile;