Sha256: 0431173b2f2c471b5a1eb63bfb69a7991e5def6ce8e3e266ccf1ab325591f58c
Contents?: true
Size: 324 Bytes
Versions: 26
Compression:
Stored size: 324 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const Chunk = require("./Chunk"); class HotUpdateChunk extends Chunk { constructor() { super(); /** @type {(string|number)[]} */ this.removedModules = undefined; } } module.exports = HotUpdateChunk;
Version data entries
26 entries across 25 versions & 8 rubygems