npm package diff

Package: @forge/bundler

Versions: 4.21.0-next.2 - 4.21.0-next.3

File: package/out/config/common.d.ts

Index: package/out/config/common.d.ts
===================================================================
--- package/out/config/common.d.ts
+++ package/out/config/common.d.ts
@@ -1,10 +1,8 @@
 /// <reference types="node" />
 import { Configuration as WebpackConfig, ModuleOptions } from 'webpack';
-import { Handler } from '@forge/cli-shared';
 import { Translations } from '@forge/manifest';
-import { BundlerArgs, EntryPoint } from '../types';
-export declare function getEntryPoints(handlers: Handler[]): EntryPoint[];
+import { BundlerArgs } from '../types';
 export declare const resolveModulePath: (moduleName: string) => string;
 export declare function resolveStubPath(stubName: string): string;
 export declare const getDevToolConfig: ({ watchMode }: Pick<BundlerArgs, 'watchMode'>) => string;
 export declare type RequiredFields<T, F extends keyof T> = T & Required<Pick<T, F>>;