forked from collective-soundworks/soundworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.js
28 lines (23 loc) · 948 Bytes
/
client.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"use strict";
/**
* This is a dirty shortcut to enable cleaner import in template using `type=module`
* This should be cleaned little by little...
*
* We need to define if we can be backward compatible there if we go to full module (probably not)
*/
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = exports.Client = exports.AbstractExperience = void 0;
var _AbstractExperience2 = _interopRequireDefault(require("./client/AbstractExperience.js"));
var _Client2 = _interopRequireDefault(require("./client/Client.js"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
const AbstractExperience = _AbstractExperience2.default;
exports.AbstractExperience = AbstractExperience;
const Client = _Client2.default;
exports.Client = Client;
var _default = {
AbstractExperience: _AbstractExperience2.default,
Client: _Client2.default
};
exports.default = _default;