@dynatrace/react-native-plugin
Version:
This plugin gives you the ability to use the Dynatrace Mobile agent in your react native application.
13 lines (12 loc) • 567 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Platform = void 0;
const DynatraceBridge_1 = require("../DynatraceBridge");
const { PLATFORM_ANDROID, PLATFORM_IOS, } = !!DynatraceBridge_1.DynatraceNative.getConstants
? DynatraceBridge_1.DynatraceNative.getConstants()
: DynatraceBridge_1.DynatraceNative;
var Platform;
(function (Platform) {
Platform[Platform["Android"] = PLATFORM_ANDROID] = "Android";
Platform[Platform["Ios"] = PLATFORM_IOS] = "Ios";
})(Platform = exports.Platform || (exports.Platform = {}));