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">

26 lines (22 loc) 603 B
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; /** @typedef {import("./SingleEntryDependency")} SingleEntryDependency */ const Dependency = require("../Dependency"); class MultiEntryDependency extends Dependency { /** * @param {SingleEntryDependency[]} dependencies an array of SingleEntryDependencies * @param {string} name entry name */ constructor(dependencies, name) { super(); this.dependencies = dependencies; this.name = name; } get type() { return "multi entry"; } } module.exports = MultiEntryDependency;