Projekt

Obecné

Profil

Stáhnout (324 Bajtů) Statistiky
| Větev: | Revize:
1
/*
2
	MIT License http://www.opensource.org/licenses/mit-license.php
3
	Author Tobias Koppers @sokra
4
*/
5
"use strict";
6

    
7
const Chunk = require("./Chunk");
8

    
9
class HotUpdateChunk extends Chunk {
10
	constructor() {
11
		super();
12
		/** @type {(string|number)[]} */
13
		this.removedModules = undefined;
14
	}
15
}
16

    
17
module.exports = HotUpdateChunk;
(64-64/144)