"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/** Represents a Base class that will be inherited by all other structure classes. */varBase = /** @class */ (function () {
functionBase(client) {
this.client = client;
}
returnBase;
}());
exports.default = Base;