@obelisk/client
Version:
Typescript client to interact with Obelisk on a higher level than the regular ReST API calls.
19 lines (18 loc) • 408 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Config = void 0;
/**
* Config static class holding global settings flag
* @hidden
*/
let Config = /** @class */ (() => {
class Config {
}
/**
* Show debug output in console.debug
* @default false
*/
Config.debug = false;
return Config;
})();
exports.Config = Config;