source: frontend/node_modules/webpack/lib/container/RemoteToExternalDependency.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 693 bytes
Line 
1/*
2 MIT License http://www.opensource.org/licenses/mit-license.php
3 Author Tobias Koppers @sokra
4*/
5
6"use strict";
7
8const ModuleDependency = require("../dependencies/ModuleDependency");
9const makeSerializable = require("../util/makeSerializable");
10
11class RemoteToExternalDependency extends ModuleDependency {
12 /**
13 * Creates an instance of RemoteToExternalDependency.
14 * @param {string} request request
15 */
16 constructor(request) {
17 super(request);
18 }
19
20 get type() {
21 return "remote to external";
22 }
23
24 get category() {
25 return "esm";
26 }
27}
28
29makeSerializable(
30 RemoteToExternalDependency,
31 "webpack/lib/container/RemoteToExternalDependency"
32);
33
34module.exports = RemoteToExternalDependency;
Note: See TracBrowser for help on using the repository browser.