mirror of https://github.com/webpack/webpack.git
fix: export types for serialization and deserialization in plugins (#19769)
This commit is contained in:
parent
a0189019cc
commit
f2228eaa09
|
@ -75,6 +75,8 @@ const memoize = require("./util/memoize");
|
|||
/** @typedef {import("./stats/DefaultStatsFactoryPlugin").StatsModuleTraceDependency} StatsModuleTraceDependency */
|
||||
/** @typedef {import("./stats/DefaultStatsFactoryPlugin").StatsModuleTraceItem} StatsModuleTraceItem */
|
||||
/** @typedef {import("./stats/DefaultStatsFactoryPlugin").StatsProfile} StatsProfile */
|
||||
/** @typedef {import("./serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
|
||||
/** @typedef {import("./serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
|
||||
/** @typedef {import("./util/fs").InputFileSystem} InputFileSystem */
|
||||
/** @typedef {import("./util/fs").OutputFileSystem} OutputFileSystem */
|
||||
|
||||
|
|
|
@ -18325,6 +18325,8 @@ declare namespace exports {
|
|||
StatsModuleTraceDependency,
|
||||
StatsModuleTraceItem,
|
||||
StatsProfile,
|
||||
ObjectSerializerContext,
|
||||
ObjectDeserializerContext,
|
||||
InputFileSystem,
|
||||
OutputFileSystem,
|
||||
LoaderModule,
|
||||
|
|
Loading…
Reference in New Issue