18 lines
451 B
JavaScript
18 lines
451 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Base = void 0;
|
|
var Base = /** @class */ (function () {
|
|
function Base(soundcloud) {
|
|
this.soundcloud = soundcloud;
|
|
}
|
|
Object.defineProperty(Base.prototype, "api", {
|
|
get: function () {
|
|
return this.soundcloud.api;
|
|
},
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
return Base;
|
|
}());
|
|
exports.Base = Base;
|