source: trip-planner-front/node_modules/webpack-dev-server/client/clients/BaseClient.js@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.0 KB
Line 
1'use strict';
2/* eslint-disable
3 no-unused-vars
4*/
5
6function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
7
8function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
9
10function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
11
12module.exports = /*#__PURE__*/function () {
13 function BaseClient() {
14 _classCallCheck(this, BaseClient);
15 }
16
17 _createClass(BaseClient, null, [{
18 key: "getClientPath",
19 value: function getClientPath(options) {
20 throw new Error('Client needs implementation');
21 }
22 }]);
23
24 return BaseClient;
25}();
Note: See TracBrowser for help on using the repository browser.