next
Version:
The React Framework
15 lines (14 loc) • 446 B
TypeScript
import type { webpack5 } from 'next/dist/compiled/webpack/webpack';
declare type Options = {
dev: boolean;
isEdgeServer: boolean;
};
export declare const injectedClientEntries: Map<any, any>;
export declare class FlightClientEntryPlugin {
dev: boolean;
isEdgeServer: boolean;
constructor(options: Options);
apply(compiler: webpack5.Compiler): void;
createClientEndpoints(compilation: any): Promise<void>;
}
export {};