UNPKG

@dillonkearns/elm-graphql

Version:

<img src="https://cdn.jsdelivr.net/gh/martimatix/logo-graphqelm/logo.svg" alt="dillonearns/elm-graphql logo" width="40%" align="right">

21 lines (17 loc) 391 B
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const Dependency = require("../Dependency"); class DllEntryDependency extends Dependency { constructor(dependencies, name) { super(); this.dependencies = dependencies; this.name = name; } get type() { return "dll entry"; } } module.exports = DllEntryDependency;