nav tabs on admin dashboard
This commit is contained in:
5
node_modules/webpack/lib/dependencies/MultiEntryDependency.js
generated
vendored
5
node_modules/webpack/lib/dependencies/MultiEntryDependency.js
generated
vendored
@@ -3,9 +3,14 @@
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user