npm package diff

Package: @forge/bundler

Versions: 4.21.1-next.11 - 4.21.1-next.12

File: package/out/types.d.ts

Index: package/out/types.d.ts
===================================================================
--- package/out/types.d.ts
+++ package/out/types.d.ts
@@ -1,5 +1,5 @@
-import { Logger, UserError } from '@forge/cli-shared';
+import { I18nResourceBundle, Logger, UserError } from '@forge/cli-shared';
 import { Translations } from '@forge/manifest';
 export declare type BundlerMetadata = {
     modules?: string[];
 };
@@ -15,10 +15,11 @@
 };
 export declare type BundlerArgs = {
     appDirectory: string;
     entryPoints: EntryPoint[];
-    i18nConfig?: Translations;
     watchMode?: BundlerWatchMode;
+    i18nConfig?: Translations;
+    i18nResourceBundle?: I18nResourceBundle;
 };
 export declare type BundlerWatchArgs = BundlerArgs & Required<Pick<BundlerArgs, 'watchMode'>> & {
     successMessage: string;
 };