UNPKG

detox-allure2-adapter

Version:
20 lines 493 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OnViewResult = exports.Espresso = void 0; class Espresso { static onView(viewMatcher) { return new OnViewResult(viewMatcher); } } exports.Espresso = Espresso; class OnViewResult { matcher; constructor(matcher) { this.matcher = matcher; } toJSON() { return this.matcher.toJSON(); } } exports.OnViewResult = OnViewResult; //# sourceMappingURL=Espresso.js.map