bbdd16b2dbb67acb429cade8623f93b39d0c403b36b40df30dd75871f279b754d6a99f504dcce34d9286c4d02191beb9f16204ea829b0f895fc017c5743b05 391 B

1234567891011121314151617181920
  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Tobias Koppers @sokra
  4. */
  5. "use strict";
  6. const Dependency = require("../Dependency");
  7. class DllEntryDependency extends Dependency {
  8. constructor(dependencies, name) {
  9. super();
  10. this.dependencies = dependencies;
  11. this.name = name;
  12. }
  13. get type() {
  14. return "dll entry";
  15. }
  16. }
  17. module.exports = DllEntryDependency;