UNPKG

jest-cucumber

Version:
16 lines 459 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Rocket = void 0; var Rocket = /** @class */ (function () { function Rocket() { this.isInSpace = false; this.boostersLanded = true; } Rocket.prototype.launch = function () { this.isInSpace = true; this.boostersLanded = true; }; return Rocket; }()); exports.Rocket = Rocket; //# sourceMappingURL=rocket.js.map