makearmy-app/node_modules/next/dist/build/webpack/plugins/app-build-manifest-plugin.d.ts

14 lines
288 B
TypeScript
Raw Normal View History

2025-09-22 10:37:53 -04:00
type Options = {
dev: boolean;
};
export type AppBuildManifest = {
pages: Record<string, string[]>;
};
export declare class AppBuildManifestPlugin {
private readonly dev;
constructor(options: Options);
apply(compiler: any): void;
private createAsset;
}
export {};