webpack-plugin-modify-entrypoints
Version:
webpack plugin to modify entrypoint contents
10 lines (9 loc) • 387 B
TypeScript
import type { ModifyDetails, ModifyFn } from './types.js';
import type { LoaderDefinitionFunction } from 'webpack';
export declare const raw = false;
export type ModifyEntryPointsLoaderOptions = {
modify: ModifyFn;
details: ModifyDetails;
};
declare const modifyEntryPointsLoader: LoaderDefinitionFunction<ModifyEntryPointsLoaderOptions>;
export default modifyEntryPointsLoader;