@dorgtech/daocomponents
Version:
Componentizing [DAOstack's client library](https://github.com/daostack/client), enabling easier React application integration. The hope is to be able to turn any app into a DAO enabled dApp by adding ~2 components.
22 lines • 706 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var LoggingConfig = /** @class */ (function () {
function LoggingConfig(enabled) {
this.enabled = enabled;
}
Object.defineProperty(LoggingConfig, "Current", {
get: function () {
if (!this._current) {
this._current = this.OnConfig;
}
return this._current;
},
enumerable: true,
configurable: true
});
LoggingConfig.OnConfig = new LoggingConfig(true);
LoggingConfig.OffConfig = new LoggingConfig(false);
return LoggingConfig;
}());
exports.LoggingConfig = LoggingConfig;
//# sourceMappingURL=LoggingConfig.js.map