@rspack/browser 1.5.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/dist/BuildInfo.d.ts +17 -0
- package/dist/Chunk.d.ts +16 -0
- package/dist/ChunkGraph.d.ts +9 -0
- package/dist/Chunks.d.ts +12 -0
- package/dist/CodeGenerationResults.d.ts +1 -0
- package/dist/Compilation.d.ts +420 -0
- package/dist/Compiler.d.ts +192 -0
- package/dist/ConcatenatedModule.d.ts +1 -0
- package/dist/ContextModule.d.ts +1 -0
- package/dist/ContextModuleFactory.d.ts +13 -0
- package/dist/Diagnostics.d.ts +7 -0
- package/dist/Entrypoint.d.ts +2 -0
- package/dist/ErrorHelpers.d.ts +3 -0
- package/dist/ExecuteModulePlugin.d.ts +4 -0
- package/dist/ExportsInfo.d.ts +20 -0
- package/dist/ExternalModule.d.ts +1 -0
- package/dist/FileSystem.d.ts +54 -0
- package/dist/FileSystemInfo.d.ts +5 -0
- package/dist/Module.d.ts +53 -0
- package/dist/ModuleGraph.d.ts +19 -0
- package/dist/ModuleTypeConstants.d.ts +8 -0
- package/dist/MultiCompiler.d.ts +78 -0
- package/dist/MultiStats.d.ts +22 -0
- package/dist/MultiWatching.d.ts +27 -0
- package/dist/NativeWatchFileSystem.d.ts +18 -0
- package/dist/NormalModule.d.ts +15 -0
- package/dist/NormalModuleFactory.d.ts +23 -0
- package/dist/Resolver.d.ts +18 -0
- package/dist/ResolverFactory.d.ts +17 -0
- package/dist/RspackError.d.ts +9 -0
- package/dist/RuleSetCompiler.d.ts +9 -0
- package/dist/RuntimeGlobals.d.ts +325 -0
- package/dist/RuntimeModule.d.ts +32 -0
- package/dist/Stats.d.ts +17 -0
- package/dist/Template.d.ts +77 -0
- package/dist/Watching.d.ts +47 -0
- package/dist/browser/buffer.d.ts +1 -0
- package/dist/browser/fs.d.ts +12 -0
- package/dist/browser/index.d.ts +5 -0
- package/dist/browser/service.d.ts +3 -0
- package/dist/builtin-loader/index.d.ts +1 -0
- package/dist/builtin-loader/lightningcss/index.d.ts +117 -0
- package/dist/builtin-loader/swc/collectTypeScriptInfo.d.ts +21 -0
- package/dist/builtin-loader/swc/index.d.ts +5 -0
- package/dist/builtin-loader/swc/pluginImport.d.ts +33 -0
- package/dist/builtin-loader/swc/types.d.ts +83 -0
- package/dist/builtin-plugin/APIPlugin.d.ts +9 -0
- package/dist/builtin-plugin/ArrayPushCallbackChunkFormatPlugin.d.ts +9 -0
- package/dist/builtin-plugin/AssetModulesPlugin.d.ts +9 -0
- package/dist/builtin-plugin/AsyncWebAssemblyModulesPlugin.d.ts +9 -0
- package/dist/builtin-plugin/BannerPlugin.d.ts +40 -0
- package/dist/builtin-plugin/BundlerInfoRspackPlugin.d.ts +14 -0
- package/dist/builtin-plugin/ChunkPrefetchPreloadPlugin.d.ts +9 -0
- package/dist/builtin-plugin/CircularDependencyRspackPlugin.d.ts +59 -0
- package/dist/builtin-plugin/CommonJsChunkFormatPlugin.d.ts +9 -0
- package/dist/builtin-plugin/ContextReplacementPlugin.d.ts +9 -0
- package/dist/builtin-plugin/CopyRspackPlugin.d.ts +14 -0
- package/dist/builtin-plugin/CssChunkingPlugin.d.ts +21 -0
- package/dist/builtin-plugin/CssModulesPlugin.d.ts +9 -0
- package/dist/builtin-plugin/DataUriPlugin.d.ts +9 -0
- package/dist/builtin-plugin/DefinePlugin.d.ts +16 -0
- package/dist/builtin-plugin/DeterministicChunkIdsPlugin.d.ts +8 -0
- package/dist/builtin-plugin/DeterministicModuleIdsPlugin.d.ts +8 -0
- package/dist/builtin-plugin/DllEntryPlugin.d.ts +12 -0
- package/dist/builtin-plugin/DllReferenceAgencyPlugin.d.ts +11 -0
- package/dist/builtin-plugin/DynamicEntryPlugin.d.ts +12 -0
- package/dist/builtin-plugin/ElectronTargetPlugin.d.ts +9 -0
- package/dist/builtin-plugin/EnableChunkLoadingPlugin.d.ts +25 -0
- package/dist/builtin-plugin/EnableLibraryPlugin.d.ts +11 -0
- package/dist/builtin-plugin/EnableWasmLoadingPlugin.d.ts +9 -0
- package/dist/builtin-plugin/EnsureChunkConditionsPlugin.d.ts +9 -0
- package/dist/builtin-plugin/EntryPlugin.d.ts +32 -0
- package/dist/builtin-plugin/EvalDevToolModulePlugin.d.ts +11 -0
- package/dist/builtin-plugin/EvalSourceMapDevToolPlugin.d.ts +10 -0
- package/dist/builtin-plugin/ExternalsPlugin.d.ts +11 -0
- package/dist/builtin-plugin/FetchCompileAsyncWasmPlugin.d.ts +9 -0
- package/dist/builtin-plugin/FileUriPlugin.d.ts +9 -0
- package/dist/builtin-plugin/FlagAllModulesAsUsedPlugin.d.ts +9 -0
- package/dist/builtin-plugin/FlagDependencyExportsPlugin.d.ts +9 -0
- package/dist/builtin-plugin/FlagDependencyUsagePlugin.d.ts +10 -0
- package/dist/builtin-plugin/HotModuleReplacementPlugin.d.ts +7 -0
- package/dist/builtin-plugin/HttpExternalsRspackPlugin.d.ts +9 -0
- package/dist/builtin-plugin/HttpUriPlugin.d.ts +36 -0
- package/dist/builtin-plugin/IgnorePlugin.d.ts +19 -0
- package/dist/builtin-plugin/InferAsyncModulesPlugin.d.ts +9 -0
- package/dist/builtin-plugin/JavascriptModulesPlugin.d.ts +15 -0
- package/dist/builtin-plugin/JsLoaderRspackPlugin.d.ts +10 -0
- package/dist/builtin-plugin/JsonModulesPlugin.d.ts +9 -0
- package/dist/builtin-plugin/LibManifestPlugin.d.ts +17 -0
- package/dist/builtin-plugin/LightningCssMinimizerRspackPlugin.d.ts +32 -0
- package/dist/builtin-plugin/LimitChunkCountPlugin.d.ts +14 -0
- package/dist/builtin-plugin/MangleExportsPlugin.d.ts +10 -0
- package/dist/builtin-plugin/MergeDuplicateChunksPlugin.d.ts +9 -0
- package/dist/builtin-plugin/ModuleChunkFormatPlugin.d.ts +9 -0
- package/dist/builtin-plugin/ModuleConcatenationPlugin.d.ts +8 -0
- package/dist/builtin-plugin/ModuleInfoHeaderPlugin.d.ts +9 -0
- package/dist/builtin-plugin/NamedChunkIdsPlugin.d.ts +9 -0
- package/dist/builtin-plugin/NamedModuleIdsPlugin.d.ts +9 -0
- package/dist/builtin-plugin/NaturalChunkIdsPlugin.d.ts +8 -0
- package/dist/builtin-plugin/NaturalModuleIdsPlugin.d.ts +8 -0
- package/dist/builtin-plugin/NoEmitOnErrorsPlugin.d.ts +9 -0
- package/dist/builtin-plugin/NodeTargetPlugin.d.ts +9 -0
- package/dist/builtin-plugin/OccurrenceChunkIdsPlugin.d.ts +10 -0
- package/dist/builtin-plugin/ProgressPlugin.d.ts +11 -0
- package/dist/builtin-plugin/ProvidePlugin.d.ts +10 -0
- package/dist/builtin-plugin/RealContentHashPlugin.d.ts +9 -0
- package/dist/builtin-plugin/RemoveDuplicateModulesPlugin.d.ts +9 -0
- package/dist/builtin-plugin/RemoveEmptyChunksPlugin.d.ts +9 -0
- package/dist/builtin-plugin/RsdoctorPlugin.d.ts +49 -0
- package/dist/builtin-plugin/RslibPlugin.d.ts +11 -0
- package/dist/builtin-plugin/RstestPlugin.d.ts +11 -0
- package/dist/builtin-plugin/RuntimeChunkPlugin.d.ts +11 -0
- package/dist/builtin-plugin/RuntimePlugin.d.ts +28 -0
- package/dist/builtin-plugin/SideEffectsFlagPlugin.d.ts +9 -0
- package/dist/builtin-plugin/SizeLimitsPlugin.d.ts +19 -0
- package/dist/builtin-plugin/SourceMapDevToolPlugin.d.ts +11 -0
- package/dist/builtin-plugin/SplitChunksPlugin.d.ts +11 -0
- package/dist/builtin-plugin/SubresourceIntegrityPlugin.d.ts +40 -0
- package/dist/builtin-plugin/SwcJsMinimizerPlugin.d.ts +214 -0
- package/dist/builtin-plugin/WarnCaseSensitiveModulesPlugin.d.ts +9 -0
- package/dist/builtin-plugin/WebWorkerTemplatePlugin.d.ts +7 -0
- package/dist/builtin-plugin/WorkerPlugin.d.ts +13 -0
- package/dist/builtin-plugin/base.d.ts +45 -0
- package/dist/builtin-plugin/css-extract/index.d.ts +24 -0
- package/dist/builtin-plugin/css-extract/loader.d.ts +21 -0
- package/dist/builtin-plugin/css-extract/utils.d.ts +6 -0
- package/dist/builtin-plugin/html-plugin/hooks.d.ts +32 -0
- package/dist/builtin-plugin/html-plugin/index.d.ts +2 -0
- package/dist/builtin-plugin/html-plugin/options.d.ts +83 -0
- package/dist/builtin-plugin/html-plugin/plugin.d.ts +24 -0
- package/dist/builtin-plugin/html-plugin/taps.d.ts +2 -0
- package/dist/builtin-plugin/index.d.ts +80 -0
- package/dist/builtin-plugin/lazy-compilation/lazyCompilation.d.ts +24 -0
- package/dist/builtin-plugin/lazy-compilation/middleware.d.ts +4 -0
- package/dist/config/adapter.d.ts +8 -0
- package/dist/config/adapterRuleUse.d.ts +333 -0
- package/dist/config/browserslistTargetHandler.d.ts +15 -0
- package/dist/config/defaults.d.ts +13 -0
- package/dist/config/devServer.d.ts +207 -0
- package/dist/config/index.d.ts +4 -0
- package/dist/config/normalization.d.ts +161 -0
- package/dist/config/target.d.ts +89 -0
- package/dist/config/types.d.ts +2293 -0
- package/dist/container/ContainerPlugin.d.ts +40 -0
- package/dist/container/ContainerReferencePlugin.d.ts +33 -0
- package/dist/container/ModuleFederationPlugin.d.ts +13 -0
- package/dist/container/ModuleFederationPluginV1.d.ts +22 -0
- package/dist/container/ModuleFederationRuntimePlugin.d.ts +12 -0
- package/dist/container/index.d.ts +4 -0
- package/dist/container/options.d.ts +3 -0
- package/dist/error/ConcurrentCompilationError.d.ts +14 -0
- package/dist/exports.d.ts +166 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.mjs +57114 -0
- package/dist/index.mjs.LICENSE.txt +10 -0
- package/dist/lib/AbstractMethodError.d.ts +23 -0
- package/dist/lib/Cache.d.ts +65 -0
- package/dist/lib/CacheFacade.d.ts +139 -0
- package/dist/lib/DllPlugin.d.ts +42 -0
- package/dist/lib/DllReferencePlugin.d.ts +119 -0
- package/dist/lib/EntryOptionPlugin.d.ts +33 -0
- package/dist/lib/EnvironmentPlugin.d.ts +22 -0
- package/dist/lib/HookWebpackError.d.ts +40 -0
- package/dist/lib/IgnoreWarningsPlugin.d.ts +25 -0
- package/dist/lib/LoaderOptionsPlugin.d.ts +28 -0
- package/dist/lib/LoaderTargetPlugin.d.ts +24 -0
- package/dist/lib/ModuleFilenameHelpers.d.ts +53 -0
- package/dist/lib/NormalModuleReplacementPlugin.d.ts +29 -0
- package/dist/lib/WebpackError.d.ts +21 -0
- package/dist/lib/cache/MemoryCachePlugin.d.ts +5 -0
- package/dist/lib/cache/getLazyHashedEtag.d.ts +35 -0
- package/dist/lib/cache/mergeEtags.d.ts +17 -0
- package/dist/loader-runner/LoaderLoadingError.d.ts +13 -0
- package/dist/loader-runner/ModuleError.d.ts +7 -0
- package/dist/loader-runner/ModuleWarning.d.ts +7 -0
- package/dist/loader-runner/index.d.ts +34 -0
- package/dist/loader-runner/loadLoader.d.ts +12 -0
- package/dist/loader-runner/service.d.ts +71 -0
- package/dist/loader-runner/utils.d.ts +7 -0
- package/dist/loader-runner/worker.d.ts +14 -0
- package/dist/logging/Logger.d.ts +61 -0
- package/dist/logging/createConsoleLogger.d.ts +35 -0
- package/dist/logging/truncateArgs.d.ts +16 -0
- package/dist/node/NodeEnvironmentPlugin.d.ts +10 -0
- package/dist/node/NodeTemplatePlugin.d.ts +18 -0
- package/dist/node/NodeWatchFileSystem.d.ts +18 -0
- package/dist/node/nodeConsole.d.ts +15 -0
- package/dist/rspack.d.ts +16 -0
- package/dist/rspack.wasi-browser.js +101 -0
- package/dist/rspackOptionsApply.d.ts +4 -0
- package/dist/runtime/cssExtractHmr.d.ts +4 -0
- package/dist/runtime/moduleFederationDefaultRuntime.d.ts +2 -0
- package/dist/schema/config.d.ts +1004 -0
- package/dist/schema/loaders.d.ts +399 -0
- package/dist/schema/plugins.d.ts +166 -0
- package/dist/schema/utils.d.ts +3 -0
- package/dist/schema/validate.d.ts +9 -0
- package/dist/sharing/ConsumeSharedPlugin.d.ts +41 -0
- package/dist/sharing/ProvideSharedPlugin.d.ts +34 -0
- package/dist/sharing/SharePlugin.d.ts +51 -0
- package/dist/sharing/ShareRuntimePlugin.d.ts +9 -0
- package/dist/sharing/utils.d.ts +1 -0
- package/dist/stats/DefaultStatsFactoryPlugin.d.ts +4 -0
- package/dist/stats/DefaultStatsPresetPlugin.d.ts +4 -0
- package/dist/stats/DefaultStatsPrinterPlugin.d.ts +13 -0
- package/dist/stats/StatsFactory.d.ts +57 -0
- package/dist/stats/StatsPrinter.d.ts +57 -0
- package/dist/stats/statsFactoryUtils.d.ts +325 -0
- package/dist/swc.d.ts +7 -0
- package/dist/taps/compilation.d.ts +8 -0
- package/dist/taps/compiler.d.ts +2 -0
- package/dist/taps/contextModuleFactory.d.ts +2 -0
- package/dist/taps/index.d.ts +6 -0
- package/dist/taps/javascriptModules.d.ts +2 -0
- package/dist/taps/normalModuleFactory.d.ts +2 -0
- package/dist/taps/types.d.ts +11 -0
- package/dist/trace/index.d.ts +46 -0
- package/dist/trace/traceHookPlugin.d.ts +5 -0
- package/dist/util/ArrayQueue.d.ts +45 -0
- package/dist/util/AsyncTask.d.ts +7 -0
- package/dist/util/MergeCaller.d.ts +10 -0
- package/dist/util/SizeFormatHelpers.d.ts +10 -0
- package/dist/util/SplitChunkSize.d.ts +5 -0
- package/dist/util/assertNotNil.d.ts +1 -0
- package/dist/util/assetCondition.d.ts +2 -0
- package/dist/util/asyncLib.d.ts +54 -0
- package/dist/util/bindingVersionCheck.d.ts +5 -0
- package/dist/util/cleverMerge.d.ts +24 -0
- package/dist/util/comparators.d.ts +16 -0
- package/dist/util/createHash.d.ts +16 -0
- package/dist/util/createReadonlyMap.d.ts +1 -0
- package/dist/util/fake.d.ts +9 -0
- package/dist/util/fs.d.ts +352 -0
- package/dist/util/hash/index.d.ts +26 -0
- package/dist/util/hash/md4.d.ts +11 -0
- package/dist/util/hash/wasm-hash.d.ts +51 -0
- package/dist/util/hash/xxhash64.d.ts +11 -0
- package/dist/util/identifier.d.ts +31 -0
- package/dist/util/index.d.ts +11 -0
- package/dist/util/memoize.d.ts +2 -0
- package/dist/util/require.d.ts +3 -0
- package/dist/util/runtime.d.ts +2 -0
- package/dist/util/smartGrouping.d.ts +21 -0
- package/dist/util/source.d.ts +7 -0
- package/dist/wasi-worker-browser.mjs +34 -0
- package/package.json +50 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022-present Bytedance, Inc. and its affiliates.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import binding from "@rspack/binding";
|
|
2
|
+
import type { Source } from "webpack-sources";
|
|
3
|
+
declare const $assets: unique symbol;
|
|
4
|
+
declare module "@rspack/binding" {
|
|
5
|
+
interface Assets {
|
|
6
|
+
[$assets]: Record<string, Source>;
|
|
7
|
+
}
|
|
8
|
+
interface KnownBuildInfo {
|
|
9
|
+
assets: Record<string, Source>;
|
|
10
|
+
fileDependencies: Set<string>;
|
|
11
|
+
contextDependencies: Set<string>;
|
|
12
|
+
missingDependencies: Set<string>;
|
|
13
|
+
buildDependencies: Set<string>;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export type { BuildInfo } from "@rspack/binding";
|
|
17
|
+
export declare const commitCustomFieldsToRust: (buildInfo: binding.BuildInfo) => void;
|
package/dist/Chunk.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { type ChunkGroup } from "@rspack/binding";
|
|
2
|
+
interface ChunkMaps {
|
|
3
|
+
hash: Record<string | number, string>;
|
|
4
|
+
contentHash: Record<string | number, Record<string, string>>;
|
|
5
|
+
name: Record<string | number, string>;
|
|
6
|
+
}
|
|
7
|
+
declare module "@rspack/binding" {
|
|
8
|
+
interface Chunk {
|
|
9
|
+
readonly files: ReadonlySet<string>;
|
|
10
|
+
readonly runtime: ReadonlySet<string>;
|
|
11
|
+
readonly auxiliaryFiles: ReadonlySet<string>;
|
|
12
|
+
readonly groupsIterable: ReadonlySet<ChunkGroup>;
|
|
13
|
+
getChunkMaps(realHash: boolean): ChunkMaps;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export { Chunk } from "@rspack/binding";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { RuntimeSpec } from "./util/runtime";
|
|
2
|
+
declare module "@rspack/binding" {
|
|
3
|
+
interface ChunkGraph {
|
|
4
|
+
getModuleChunksIterable(module: Module): Iterable<Chunk>;
|
|
5
|
+
getOrderedChunkModulesIterable(chunk: Chunk, compareFn: (a: Module, b: Module) => number): Iterable<Module>;
|
|
6
|
+
getModuleHash(module: Module, runtime: RuntimeSpec): string | null;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
export { ChunkGraph } from "@rspack/binding";
|
package/dist/Chunks.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Chunks } from "@rspack/binding";
|
|
2
|
+
declare module "@rspack/binding" {
|
|
3
|
+
interface Chunks {
|
|
4
|
+
[Symbol.iterator](): SetIterator<Chunk>;
|
|
5
|
+
entries(): SetIterator<[Chunk, Chunk]>;
|
|
6
|
+
values(): SetIterator<Chunk>;
|
|
7
|
+
keys(): SetIterator<Chunk>;
|
|
8
|
+
forEach(callbackfn: (value: Chunk, value2: Chunk, set: ReadonlySet<Chunk>) => void, thisArg?: any): void;
|
|
9
|
+
has(value: Chunk): boolean;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
export default Chunks;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,420 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3bb53f36a5b8fc6bc1bd976ed7af161bd80/lib/Compilation.js
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/webpack/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
import type { AssetInfo, ChunkGroup, Dependency, ExternalObject, JsCompilation, JsRuntimeModule } from "@rspack/binding";
|
|
11
|
+
import binding from "@rspack/binding";
|
|
12
|
+
export type { AssetInfo } from "@rspack/binding";
|
|
13
|
+
import * as liteTapable from "@rspack/lite-tapable";
|
|
14
|
+
import type { Source } from "webpack-sources";
|
|
15
|
+
import type { EntryOptions, EntryPlugin } from "./builtin-plugin";
|
|
16
|
+
import type { Chunk } from "./Chunk";
|
|
17
|
+
import type { ChunkGraph } from "./ChunkGraph";
|
|
18
|
+
import type { Compiler } from "./Compiler";
|
|
19
|
+
import type { ContextModuleFactory } from "./ContextModuleFactory";
|
|
20
|
+
import type { OutputNormalized, RspackOptionsNormalized, RspackPluginInstance, StatsOptions, StatsValue } from "./config";
|
|
21
|
+
import type { Entrypoint } from "./Entrypoint";
|
|
22
|
+
import WebpackError from "./lib/WebpackError";
|
|
23
|
+
import { Logger } from "./logging/Logger";
|
|
24
|
+
import type { Module } from "./Module";
|
|
25
|
+
import ModuleGraph from "./ModuleGraph";
|
|
26
|
+
import type { NormalModuleCompilationHooks } from "./NormalModule";
|
|
27
|
+
import type { NormalModuleFactory } from "./NormalModuleFactory";
|
|
28
|
+
import type { ResolverFactory } from "./ResolverFactory";
|
|
29
|
+
import type { RspackError } from "./RspackError";
|
|
30
|
+
import { RuntimeModule } from "./RuntimeModule";
|
|
31
|
+
import { Stats, type StatsAsset, type StatsError, type StatsModule } from "./Stats";
|
|
32
|
+
import { StatsFactory } from "./stats/StatsFactory";
|
|
33
|
+
import { StatsPrinter } from "./stats/StatsPrinter";
|
|
34
|
+
import type { InputFileSystem } from "./util/fs";
|
|
35
|
+
import type Hash from "./util/hash";
|
|
36
|
+
import "./Chunk";
|
|
37
|
+
import "./Chunks";
|
|
38
|
+
import "./ChunkGraph";
|
|
39
|
+
import "./CodeGenerationResults";
|
|
40
|
+
import type { CodeGenerationResult } from "./taps/compilation";
|
|
41
|
+
export type Assets = Record<string, Source>;
|
|
42
|
+
export interface Asset {
|
|
43
|
+
name: string;
|
|
44
|
+
source: Source;
|
|
45
|
+
info: AssetInfo;
|
|
46
|
+
}
|
|
47
|
+
export type ChunkPathData = {
|
|
48
|
+
id?: string;
|
|
49
|
+
name?: string;
|
|
50
|
+
hash?: string;
|
|
51
|
+
contentHash?: Record<string, string>;
|
|
52
|
+
};
|
|
53
|
+
export type PathData = {
|
|
54
|
+
filename?: string;
|
|
55
|
+
hash?: string;
|
|
56
|
+
contentHash?: string;
|
|
57
|
+
runtime?: string;
|
|
58
|
+
url?: string;
|
|
59
|
+
id?: string;
|
|
60
|
+
chunk?: Chunk | ChunkPathData;
|
|
61
|
+
contentHashType?: string;
|
|
62
|
+
};
|
|
63
|
+
export interface LogEntry {
|
|
64
|
+
type: string;
|
|
65
|
+
args: any[];
|
|
66
|
+
time?: number;
|
|
67
|
+
trace?: string[];
|
|
68
|
+
}
|
|
69
|
+
export interface CompilationParams {
|
|
70
|
+
normalModuleFactory: NormalModuleFactory;
|
|
71
|
+
contextModuleFactory: ContextModuleFactory;
|
|
72
|
+
}
|
|
73
|
+
export interface KnownCreateStatsOptionsContext {
|
|
74
|
+
forToString?: boolean;
|
|
75
|
+
}
|
|
76
|
+
export interface ExecuteModuleArgument {
|
|
77
|
+
codeGenerationResult: CodeGenerationResult;
|
|
78
|
+
moduleObject: {
|
|
79
|
+
id: string;
|
|
80
|
+
exports: any;
|
|
81
|
+
loaded: boolean;
|
|
82
|
+
error?: Error;
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
export interface ExecuteModuleContext {
|
|
86
|
+
__webpack_require__: (id: string) => any;
|
|
87
|
+
}
|
|
88
|
+
export interface KnownNormalizedStatsOptions {
|
|
89
|
+
context: string;
|
|
90
|
+
chunksSort: string;
|
|
91
|
+
modulesSort: string;
|
|
92
|
+
chunkModulesSort: string;
|
|
93
|
+
nestedModulesSort: string;
|
|
94
|
+
assetsSort: string;
|
|
95
|
+
ids: boolean;
|
|
96
|
+
cachedAssets: boolean;
|
|
97
|
+
groupAssetsByEmitStatus: boolean;
|
|
98
|
+
groupAssetsByPath: boolean;
|
|
99
|
+
groupAssetsByExtension: boolean;
|
|
100
|
+
assetsSpace: number;
|
|
101
|
+
excludeAssets: ((value: string, asset: StatsAsset) => boolean)[];
|
|
102
|
+
excludeModules: ((name: string, module: StatsModule, type: "module" | "chunk" | "root-of-chunk" | "nested") => boolean)[];
|
|
103
|
+
warningsFilter: ((warning: StatsError, textValue: string) => boolean)[];
|
|
104
|
+
cachedModules: boolean;
|
|
105
|
+
orphanModules: boolean;
|
|
106
|
+
dependentModules: boolean;
|
|
107
|
+
runtimeModules: boolean;
|
|
108
|
+
groupModulesByCacheStatus: boolean;
|
|
109
|
+
groupModulesByLayer: boolean;
|
|
110
|
+
groupModulesByAttributes: boolean;
|
|
111
|
+
groupModulesByPath: boolean;
|
|
112
|
+
groupModulesByExtension: boolean;
|
|
113
|
+
groupModulesByType: boolean;
|
|
114
|
+
entrypoints: boolean | "auto";
|
|
115
|
+
chunkGroups: boolean;
|
|
116
|
+
chunkGroupAuxiliary: boolean;
|
|
117
|
+
chunkGroupChildren: boolean;
|
|
118
|
+
chunkGroupMaxAssets: number;
|
|
119
|
+
modulesSpace: number;
|
|
120
|
+
chunkModulesSpace: number;
|
|
121
|
+
nestedModulesSpace: number;
|
|
122
|
+
logging: false | "none" | "error" | "warn" | "info" | "log" | "verbose";
|
|
123
|
+
loggingDebug: ((value: string) => boolean)[];
|
|
124
|
+
loggingTrace: boolean;
|
|
125
|
+
chunkModules: boolean;
|
|
126
|
+
chunkRelations: boolean;
|
|
127
|
+
reasons: boolean;
|
|
128
|
+
moduleAssets: boolean;
|
|
129
|
+
nestedModules: boolean;
|
|
130
|
+
source: boolean;
|
|
131
|
+
usedExports: boolean;
|
|
132
|
+
providedExports: boolean;
|
|
133
|
+
optimizationBailout: boolean;
|
|
134
|
+
depth: boolean;
|
|
135
|
+
assets: boolean;
|
|
136
|
+
chunks: boolean;
|
|
137
|
+
errors: boolean;
|
|
138
|
+
errorsCount: boolean;
|
|
139
|
+
hash: boolean;
|
|
140
|
+
modules: boolean;
|
|
141
|
+
warnings: boolean;
|
|
142
|
+
warningsCount: boolean;
|
|
143
|
+
}
|
|
144
|
+
export type CreateStatsOptionsContext = KnownCreateStatsOptionsContext & Record<string, any>;
|
|
145
|
+
export type NormalizedStatsOptions = KnownNormalizedStatsOptions & Omit<StatsOptions, keyof KnownNormalizedStatsOptions> & Record<string, any>;
|
|
146
|
+
export declare const checkCompilation: (compilation: Compilation) => void;
|
|
147
|
+
export declare class Compilation {
|
|
148
|
+
#private;
|
|
149
|
+
hooks: Readonly<{
|
|
150
|
+
processAssets: liteTapable.AsyncSeriesHook<Assets>;
|
|
151
|
+
afterProcessAssets: liteTapable.SyncHook<Assets>;
|
|
152
|
+
childCompiler: liteTapable.SyncHook<[Compiler, string, number]>;
|
|
153
|
+
log: liteTapable.SyncBailHook<[string, LogEntry], true>;
|
|
154
|
+
additionalAssets: any;
|
|
155
|
+
optimizeModules: liteTapable.SyncBailHook<Iterable<Module>, void>;
|
|
156
|
+
afterOptimizeModules: liteTapable.SyncHook<Iterable<Module>, void>;
|
|
157
|
+
optimizeTree: liteTapable.AsyncSeriesHook<[
|
|
158
|
+
Iterable<Chunk>,
|
|
159
|
+
Iterable<Module>
|
|
160
|
+
]>;
|
|
161
|
+
optimizeChunkModules: liteTapable.AsyncSeriesBailHook<[
|
|
162
|
+
Iterable<Chunk>,
|
|
163
|
+
Iterable<Module>
|
|
164
|
+
], void>;
|
|
165
|
+
finishModules: liteTapable.AsyncSeriesHook<[Iterable<Module>], void>;
|
|
166
|
+
chunkHash: liteTapable.SyncHook<[Chunk, Hash], void>;
|
|
167
|
+
chunkAsset: liteTapable.SyncHook<[Chunk, string], void>;
|
|
168
|
+
processWarnings: liteTapable.SyncWaterfallHook<[WebpackError[]]>;
|
|
169
|
+
succeedModule: liteTapable.SyncHook<[Module], void>;
|
|
170
|
+
stillValidModule: liteTapable.SyncHook<[Module], void>;
|
|
171
|
+
statsPreset: liteTapable.HookMap<liteTapable.SyncHook<[
|
|
172
|
+
Partial<StatsOptions>,
|
|
173
|
+
CreateStatsOptionsContext
|
|
174
|
+
], void>>;
|
|
175
|
+
statsNormalize: liteTapable.SyncHook<[
|
|
176
|
+
Partial<StatsOptions>,
|
|
177
|
+
CreateStatsOptionsContext
|
|
178
|
+
], void>;
|
|
179
|
+
statsFactory: liteTapable.SyncHook<[StatsFactory, StatsOptions], void>;
|
|
180
|
+
statsPrinter: liteTapable.SyncHook<[StatsPrinter, StatsOptions], void>;
|
|
181
|
+
buildModule: liteTapable.SyncHook<[Module]>;
|
|
182
|
+
executeModule: liteTapable.SyncHook<[
|
|
183
|
+
ExecuteModuleArgument,
|
|
184
|
+
ExecuteModuleContext
|
|
185
|
+
]>;
|
|
186
|
+
additionalTreeRuntimeRequirements: liteTapable.SyncHook<[
|
|
187
|
+
Chunk,
|
|
188
|
+
Set<string>
|
|
189
|
+
], void>;
|
|
190
|
+
runtimeRequirementInTree: liteTapable.HookMap<liteTapable.SyncBailHook<[Chunk, Set<string>], void>>;
|
|
191
|
+
runtimeModule: liteTapable.SyncHook<[JsRuntimeModule, Chunk], void>;
|
|
192
|
+
seal: liteTapable.SyncHook<[], void>;
|
|
193
|
+
afterSeal: liteTapable.AsyncSeriesHook<[], void>;
|
|
194
|
+
needAdditionalPass: liteTapable.SyncBailHook<[], boolean>;
|
|
195
|
+
}>;
|
|
196
|
+
name?: string;
|
|
197
|
+
startTime?: number;
|
|
198
|
+
endTime?: number;
|
|
199
|
+
compiler: Compiler;
|
|
200
|
+
resolverFactory: ResolverFactory;
|
|
201
|
+
inputFileSystem: InputFileSystem | null;
|
|
202
|
+
options: RspackOptionsNormalized;
|
|
203
|
+
outputOptions: OutputNormalized;
|
|
204
|
+
logging: Map<string, LogEntry[]>;
|
|
205
|
+
childrenCounters: Record<string, number>;
|
|
206
|
+
children: Compilation[];
|
|
207
|
+
chunkGraph: ChunkGraph;
|
|
208
|
+
moduleGraph: ModuleGraph;
|
|
209
|
+
fileSystemInfo: {
|
|
210
|
+
createSnapshot(): null;
|
|
211
|
+
};
|
|
212
|
+
needAdditionalPass: boolean;
|
|
213
|
+
[binding.COMPILATION_HOOKS_MAP_SYMBOL]: WeakMap<Compilation, NormalModuleCompilationHooks>;
|
|
214
|
+
constructor(compiler: Compiler, inner: JsCompilation);
|
|
215
|
+
get hash(): Readonly<string | null>;
|
|
216
|
+
get fullHash(): Readonly<string | null>;
|
|
217
|
+
/**
|
|
218
|
+
* Get a map of all assets.
|
|
219
|
+
*/
|
|
220
|
+
get assets(): Record<string, Source>;
|
|
221
|
+
/**
|
|
222
|
+
* Get a map of all entrypoints.
|
|
223
|
+
*/
|
|
224
|
+
get entrypoints(): ReadonlyMap<string, Entrypoint>;
|
|
225
|
+
get chunkGroups(): ReadonlyArray<ChunkGroup>;
|
|
226
|
+
/**
|
|
227
|
+
* Get the named chunk groups.
|
|
228
|
+
*
|
|
229
|
+
* Note: This is a proxy for webpack internal API, only method `get`, `keys`, `values` and `entries` are supported now.
|
|
230
|
+
*/
|
|
231
|
+
get namedChunkGroups(): ReadonlyMap<string, Readonly<ChunkGroup>>;
|
|
232
|
+
get modules(): ReadonlySet<Module>;
|
|
233
|
+
get builtModules(): ReadonlySet<Module>;
|
|
234
|
+
get chunks(): ReadonlySet<Chunk>;
|
|
235
|
+
/**
|
|
236
|
+
* Get the named chunks.
|
|
237
|
+
*
|
|
238
|
+
* Note: This is a proxy for webpack internal API, only method `get`, `keys`, `values` and `entries` are supported now.
|
|
239
|
+
*/
|
|
240
|
+
get namedChunks(): ReadonlyMap<string, Readonly<binding.Chunk>>;
|
|
241
|
+
get entries(): Map<string, EntryData>;
|
|
242
|
+
get codeGenerationResults(): binding.CodeGenerationResults;
|
|
243
|
+
getCache(name: string): import("./lib/CacheFacade").CacheFacade;
|
|
244
|
+
createStatsOptions(statsValue: StatsValue | undefined, context?: CreateStatsOptionsContext): NormalizedStatsOptions;
|
|
245
|
+
createStatsFactory(options: StatsOptions): StatsFactory;
|
|
246
|
+
createStatsPrinter(options: StatsOptions): StatsPrinter;
|
|
247
|
+
/**
|
|
248
|
+
* Update an existing asset. Trying to update an asset that doesn't exist will throw an error.
|
|
249
|
+
*/
|
|
250
|
+
updateAsset(filename: string, newSourceOrFunction: Source | ((source: Source) => Source), assetInfoUpdateOrFunction?: AssetInfo | ((assetInfo: AssetInfo) => AssetInfo | undefined)): void;
|
|
251
|
+
/**
|
|
252
|
+
* Emit an not existing asset. Trying to emit an asset that already exists will throw an error.
|
|
253
|
+
*
|
|
254
|
+
* @param file - file name
|
|
255
|
+
* @param source - asset source
|
|
256
|
+
* @param assetInfo - extra asset information
|
|
257
|
+
*/
|
|
258
|
+
emitAsset(filename: string, source: Source, assetInfo?: AssetInfo): void;
|
|
259
|
+
deleteAsset(filename: string): void;
|
|
260
|
+
renameAsset(filename: string, newFilename: string): void;
|
|
261
|
+
/**
|
|
262
|
+
* Get an array of Asset
|
|
263
|
+
*/
|
|
264
|
+
getAssets(): ReadonlyArray<Asset>;
|
|
265
|
+
getAsset(name: string): Readonly<Asset> | void;
|
|
266
|
+
/**
|
|
267
|
+
* Note: This is not a webpack public API, maybe removed in future.
|
|
268
|
+
*
|
|
269
|
+
* @internal
|
|
270
|
+
*/
|
|
271
|
+
__internal__pushRspackDiagnostic(diagnostic: binding.JsRspackDiagnostic): void;
|
|
272
|
+
/**
|
|
273
|
+
* Note: This is not a webpack public API, maybe removed in future.
|
|
274
|
+
*
|
|
275
|
+
* @internal
|
|
276
|
+
*/
|
|
277
|
+
__internal__pushDiagnostic(diagnostic: ExternalObject<"Diagnostic">): void;
|
|
278
|
+
/**
|
|
279
|
+
* Note: This is not a webpack public API, maybe removed in future.
|
|
280
|
+
*
|
|
281
|
+
* @internal
|
|
282
|
+
*/
|
|
283
|
+
__internal__pushDiagnostics(diagnostics: ExternalObject<"Diagnostic[]">): void;
|
|
284
|
+
get errors(): RspackError[];
|
|
285
|
+
set errors(errors: RspackError[]);
|
|
286
|
+
get warnings(): RspackError[];
|
|
287
|
+
set warnings(warnings: RspackError[]);
|
|
288
|
+
getPath(filename: string, data?: PathData): string;
|
|
289
|
+
getPathWithInfo(filename: string, data?: PathData): binding.PathWithInfo;
|
|
290
|
+
getAssetPath(filename: string, data?: PathData): string;
|
|
291
|
+
getAssetPathWithInfo(filename: string, data?: PathData): binding.PathWithInfo;
|
|
292
|
+
getLogger(name: string | (() => string)): Logger;
|
|
293
|
+
fileDependencies: {
|
|
294
|
+
[Symbol.iterator](): Generator<string, void, unknown>;
|
|
295
|
+
has(dep: string): boolean;
|
|
296
|
+
add: (dep: string) => void;
|
|
297
|
+
addAll: (deps: Iterable<string>) => void;
|
|
298
|
+
};
|
|
299
|
+
get __internal__addedFileDependencies(): string[];
|
|
300
|
+
get __internal__removedFileDependencies(): string[];
|
|
301
|
+
get __internal__addedContextDependencies(): string[];
|
|
302
|
+
get __internal__removedContextDependencies(): string[];
|
|
303
|
+
get __internal__addedMissingDependencies(): string[];
|
|
304
|
+
get __internal__removedMissingDependencies(): string[];
|
|
305
|
+
contextDependencies: {
|
|
306
|
+
[Symbol.iterator](): Generator<string, void, unknown>;
|
|
307
|
+
has(dep: string): boolean;
|
|
308
|
+
add: (dep: string) => void;
|
|
309
|
+
addAll: (deps: Iterable<string>) => void;
|
|
310
|
+
};
|
|
311
|
+
missingDependencies: {
|
|
312
|
+
[Symbol.iterator](): Generator<string, void, unknown>;
|
|
313
|
+
has(dep: string): boolean;
|
|
314
|
+
add: (dep: string) => void;
|
|
315
|
+
addAll: (deps: Iterable<string>) => void;
|
|
316
|
+
};
|
|
317
|
+
buildDependencies: {
|
|
318
|
+
[Symbol.iterator](): Generator<string, void, unknown>;
|
|
319
|
+
has(dep: string): boolean;
|
|
320
|
+
add: (dep: string) => void;
|
|
321
|
+
addAll: (deps: Iterable<string>) => void;
|
|
322
|
+
};
|
|
323
|
+
getStats(): Stats;
|
|
324
|
+
createChildCompiler(name: string, outputOptions: OutputNormalized, plugins: RspackPluginInstance[]): Compiler;
|
|
325
|
+
rebuildModule(module: Module, f: (err: Error | null, module: Module | null) => void): void;
|
|
326
|
+
addRuntimeModule(chunk: Chunk, runtimeModule: RuntimeModule): void;
|
|
327
|
+
addInclude(context: string, dependency: ReturnType<typeof EntryPlugin.createDependency>, options: EntryOptions, callback: (err?: null | WebpackError, module?: Module) => void): void;
|
|
328
|
+
addEntry(context: string, dependency: ReturnType<typeof EntryPlugin.createDependency>, optionsOrName: EntryOptions | string, callback: (err?: null | WebpackError, module?: Module) => void): void;
|
|
329
|
+
getWarnings(): WebpackError[];
|
|
330
|
+
getErrors(): WebpackError[];
|
|
331
|
+
/**
|
|
332
|
+
* Get the `Source` of a given asset filename.
|
|
333
|
+
*
|
|
334
|
+
* Note: This is not a webpack public API, maybe removed in the future.
|
|
335
|
+
*
|
|
336
|
+
* @internal
|
|
337
|
+
*/
|
|
338
|
+
__internal__getAssetSource(filename: string): Source | void;
|
|
339
|
+
/**
|
|
340
|
+
* Set the `Source` of an given asset filename.
|
|
341
|
+
*
|
|
342
|
+
* Note: This is not a webpack public API, maybe removed in future.
|
|
343
|
+
*
|
|
344
|
+
* @internal
|
|
345
|
+
*/
|
|
346
|
+
__internal__setAssetSource(filename: string, source: Source): void;
|
|
347
|
+
/**
|
|
348
|
+
* Delete the `Source` of an given asset filename.
|
|
349
|
+
*
|
|
350
|
+
* Note: This is not a webpack public API, maybe removed in future.
|
|
351
|
+
*
|
|
352
|
+
* @internal
|
|
353
|
+
*/
|
|
354
|
+
__internal__deleteAssetSource(filename: string): void;
|
|
355
|
+
/**
|
|
356
|
+
* Get a list of asset filenames.
|
|
357
|
+
*
|
|
358
|
+
* Note: This is not a webpack public API, maybe removed in future.
|
|
359
|
+
*
|
|
360
|
+
* @internal
|
|
361
|
+
*/
|
|
362
|
+
__internal__getAssetFilenames(): string[];
|
|
363
|
+
/**
|
|
364
|
+
* Test if an asset exists.
|
|
365
|
+
*
|
|
366
|
+
* Note: This is not a webpack public API, maybe removed in future.
|
|
367
|
+
*
|
|
368
|
+
* @internal
|
|
369
|
+
*/
|
|
370
|
+
__internal__hasAsset(name: string): boolean;
|
|
371
|
+
/**
|
|
372
|
+
* Note: This is not a webpack public API, maybe removed in future.
|
|
373
|
+
*
|
|
374
|
+
* @internal
|
|
375
|
+
*/
|
|
376
|
+
__internal_getInner(): JsCompilation;
|
|
377
|
+
get __internal__shutdown(): boolean;
|
|
378
|
+
set __internal__shutdown(shutdown: boolean);
|
|
379
|
+
seal(): void;
|
|
380
|
+
unseal(): void;
|
|
381
|
+
static PROCESS_ASSETS_STAGE_ADDITIONAL: number;
|
|
382
|
+
static PROCESS_ASSETS_STAGE_PRE_PROCESS: number;
|
|
383
|
+
static PROCESS_ASSETS_STAGE_DERIVED: number;
|
|
384
|
+
static PROCESS_ASSETS_STAGE_ADDITIONS: number;
|
|
385
|
+
static PROCESS_ASSETS_STAGE_NONE: number;
|
|
386
|
+
static PROCESS_ASSETS_STAGE_OPTIMIZE: number;
|
|
387
|
+
static PROCESS_ASSETS_STAGE_OPTIMIZE_COUNT: number;
|
|
388
|
+
static PROCESS_ASSETS_STAGE_OPTIMIZE_COMPATIBILITY: number;
|
|
389
|
+
static PROCESS_ASSETS_STAGE_OPTIMIZE_SIZE: number;
|
|
390
|
+
static PROCESS_ASSETS_STAGE_DEV_TOOLING: number;
|
|
391
|
+
static PROCESS_ASSETS_STAGE_OPTIMIZE_INLINE: number;
|
|
392
|
+
static PROCESS_ASSETS_STAGE_SUMMARIZE: number;
|
|
393
|
+
static PROCESS_ASSETS_STAGE_OPTIMIZE_HASH: number;
|
|
394
|
+
static PROCESS_ASSETS_STAGE_OPTIMIZE_TRANSFER: number;
|
|
395
|
+
static PROCESS_ASSETS_STAGE_ANALYSE: number;
|
|
396
|
+
static PROCESS_ASSETS_STAGE_REPORT: number;
|
|
397
|
+
}
|
|
398
|
+
export declare class EntryData {
|
|
399
|
+
dependencies: Dependency[];
|
|
400
|
+
includeDependencies: Dependency[];
|
|
401
|
+
options: binding.JsEntryOptions;
|
|
402
|
+
static __from_binding(binding: binding.JsEntryData): EntryData;
|
|
403
|
+
private constructor();
|
|
404
|
+
}
|
|
405
|
+
export declare class Entries implements Map<string, EntryData> {
|
|
406
|
+
#private;
|
|
407
|
+
constructor(data: binding.JsEntries);
|
|
408
|
+
clear(): void;
|
|
409
|
+
forEach(callback: (value: EntryData, key: string, map: Map<string, EntryData>) => void, thisArg?: any): void;
|
|
410
|
+
get size(): number;
|
|
411
|
+
entries(): ReturnType<Map<string, EntryData>["entries"]>;
|
|
412
|
+
values(): ReturnType<Map<string, EntryData>["values"]>;
|
|
413
|
+
[Symbol.iterator](): ReturnType<Map<string, EntryData>["entries"]>;
|
|
414
|
+
get [Symbol.toStringTag](): string;
|
|
415
|
+
has(key: string): boolean;
|
|
416
|
+
set(key: string, value: EntryData): this;
|
|
417
|
+
delete(key: string): boolean;
|
|
418
|
+
get(key: string): EntryData | undefined;
|
|
419
|
+
keys(): ReturnType<Map<string, EntryData>["keys"]>;
|
|
420
|
+
}
|