webpack/declarations/plugins/ManifestPlugin.d.ts

20 lines
520 B
TypeScript
Raw Normal View History

2025-09-15 00:24:00 +08:00
/*
* This file was automatically generated.
* DO NOT MODIFY BY HAND.
* Run `yarn fix:special` to update
*/
export interface ManifestPluginOptions {
/**
* Specifies the filename of the output file on disk. By default the plugin will emit `manifest.json` inside the 'output.path' directory.
*/
filename?: string;
2025-09-21 07:38:43 +08:00
/**
* A custom Function to create the manifest.
*/
handle?: (
manifest: Record<string, string>,
stats: import("../../lib/stats/DefaultStatsFactoryPlugin").StatsCompilation
) => string;
2025-09-15 00:24:00 +08:00
}