您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

HotUpdateChunk.js 324B

1234567891011121314151617
  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Tobias Koppers @sokra
  4. */
  5. "use strict";
  6. const Chunk = require("./Chunk");
  7. class HotUpdateChunk extends Chunk {
  8. constructor() {
  9. super();
  10. /** @type {(string|number)[]} */
  11. this.removedModules = undefined;
  12. }
  13. }
  14. module.exports = HotUpdateChunk;