Neah/node_modules/next/dist/build/webpack/plugins/nextjs-require-cache-hot-reloader.d.ts
2025-04-24 17:19:14 +02:00

13 lines
416 B
TypeScript

import type { webpack } from 'next/dist/compiled/webpack/webpack';
type Compiler = webpack.Compiler;
type WebpackPluginInstance = webpack.WebpackPluginInstance;
export declare class NextJsRequireCacheHotReloader implements WebpackPluginInstance {
prevAssets: any;
serverComponents: boolean;
constructor(opts: {
serverComponents: boolean;
});
apply(compiler: Compiler): void;
}
export {};