UNPKG

@dynatrace/react-native-plugin

Version:

This plugin gives you the ability to use the Dynatrace Mobile agent in your react native application.

36 lines (35 loc) 770 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NullAction = void 0; class NullAction { reportError(errorName, errorCode, platform) { return; } reportEvent(eventName, platform) { return; } reportStringValue(valueName, value, platform) { return; } reportIntValue(valueName, value, platform) { return; } reportDoubleValue(valueName, value, platform) { return; } leaveAction(platform) { return; } cancel(platfrom) { return; } getRequestTag(url) { return new Promise((resolve) => { resolve(''); }); } getRequestTagHeader() { return ''; } } exports.NullAction = NullAction;