UNPKG

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