HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/buyercall/node_modules/webpack-manifest-plugin/dist/hooks.d.ts
import { Compiler, Module, Compilation, LoaderContext } from 'webpack';
import { EmitCountMap, InternalOptions } from './';
interface BeforeRunHookArgs {
    emitCountMap: EmitCountMap;
    manifestFileName: string;
}
interface EmitHookArgs {
    compiler: Compiler;
    emitCountMap: EmitCountMap;
    manifestAssetId: string;
    manifestFileName: string;
    moduleAssets: Record<any, any>;
    options: InternalOptions;
}
declare const getCompilerHooks: (compiler: Compiler) => any;
declare const beforeRunHook: ({ emitCountMap, manifestFileName }: BeforeRunHookArgs, _: Compiler, callback: Function) => void;
declare const emitHook: ({ compiler, emitCountMap, manifestAssetId, manifestFileName, moduleAssets, options }: EmitHookArgs, compilation: Compilation) => void;
interface LegacyModule extends Module {
    userRequest?: any;
}
declare const normalModuleLoaderHook: ({ moduleAssets }: {
    moduleAssets: Record<any, any>;
}, loaderContext: LoaderContext<any>, module: LegacyModule) => void;
export { beforeRunHook, emitHook, getCompilerHooks, normalModuleLoaderHook };