You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
1.0 KiB

4 years ago
  1. 'use strict';
  2. /* eslint-disable
  3. no-unused-vars
  4. */
  5. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  6. function _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); } }
  7. function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
  8. module.exports =
  9. /*#__PURE__*/
  10. function () {
  11. function BaseClient() {
  12. _classCallCheck(this, BaseClient);
  13. }
  14. _createClass(BaseClient, null, [{
  15. key: "getClientPath",
  16. value: function getClientPath(options) {
  17. throw new Error('Client needs implementation');
  18. }
  19. }]);
  20. return BaseClient;
  21. }();