Files
old-kitabcitab-frontend/kitabcitab/node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts
2022-12-27 12:05:56 +01:00

17 lines
543 B
TypeScript

import { webpack } from 'next/dist/compiled/webpack/webpack';
export declare type PagesManifest = {
[page: string]: string;
};
export default class PagesManifestPlugin implements webpack.WebpackPluginInstance {
dev: boolean;
isEdgeRuntime: boolean;
appDirEnabled: boolean;
constructor({ dev, isEdgeRuntime, appDirEnabled, }: {
dev: boolean;
isEdgeRuntime: boolean;
appDirEnabled: boolean;
});
createAssets(compilation: any, assets: any): void;
apply(compiler: webpack.Compiler): void;
}