@dynatrace/react-native-plugin
Version:
This plugin gives you the ability to use the Dynatrace Mobile agent in your react native application.
23 lines (22 loc) • 757 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CustomArgumentsBuilderImpl = void 0;
const CustomArgumentsImpl_1 = require("./CustomArgumentsImpl");
class CustomArgumentsBuilderImpl {
withConfigurationArgument(configurationPath) {
this.configurationPath = configurationPath;
return this;
}
withGradleArgument(gradlePath) {
this.gradlePath = gradlePath;
return this;
}
withPlistArgument(plistPath) {
this.plistPath = plistPath;
return this;
}
build() {
return new CustomArgumentsImpl_1.CustomArgumentsImpl(this.configurationPath, this.gradlePath, this.plistPath);
}
}
exports.CustomArgumentsBuilderImpl = CustomArgumentsBuilderImpl;