@dynatrace/cordova-plugin
Version:
This plugin gives you the ability to use the Dynatrace instrumentation in your hybrid application (Cordova, Ionic, ..). It uses the Mobile Agent, the JavaScript Agent. The Mobile Agent will give you all device specific values containing lifecycle informat
17 lines (16 loc) • 625 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MobileAgentConfiguration = void 0;
var MobileAgentConfiguration = (function () {
function MobileAgentConfiguration(configuration) {
this.configuration = configuration;
}
MobileAgentConfiguration.prototype.getConfiguration = function () {
return this.configuration;
};
MobileAgentConfiguration.prototype.isConfigurationAvailable = function () {
return this.configuration !== undefined;
};
return MobileAgentConfiguration;
}());
exports.MobileAgentConfiguration = MobileAgentConfiguration;