bitfront-library
Version:
Angular CLI project with components and classes used by other Angular projects of the BIT foundation.
29 lines • 799 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Forward = exports.Back = exports.Go = exports.FORWARD = exports.BACK = exports.GO = void 0;
exports.GO = "[Router] Go";
exports.BACK = "[Router] Back";
exports.FORWARD = "[Router] Forward";
var Go = /** @class */ (function () {
function Go(payload) {
this.payload = payload;
this.type = exports.GO;
}
return Go;
}());
exports.Go = Go;
var Back = /** @class */ (function () {
function Back() {
this.type = exports.BACK;
}
return Back;
}());
exports.Back = Back;
var Forward = /** @class */ (function () {
function Forward() {
this.type = exports.FORWARD;
}
return Forward;
}());
exports.Forward = Forward;
//# sourceMappingURL=router.action.js.map