next
Version:
The React Framework
11 lines (10 loc) • 428 B
TypeScript
import type { webpack5 } from 'next/dist/compiled/webpack/webpack';
declare type Compiler = webpack5.Compiler;
declare type WebpackPluginInstance = webpack5.WebpackPluginInstance;
export declare class NextJsRequireCacheHotReloader implements WebpackPluginInstance {
prevAssets: any;
previousOutputPathsWebpack5: Set<string>;
currentOutputPathsWebpack5: Set<string>;
apply(compiler: Compiler): void;
}
export {};