all files / lib/ Route.js

100% Statements 10/10
100% Branches 0/0
100% Functions 1/1
100% Lines 10/10
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26                          22× 22× 22× 22× 22× 22× 22×      
"use strict";
 
Object.defineProperty(exports, "__esModule", {
    value: true
});
let Route = class Route {
    /**
     * @param {string} all
     * @param {string} controller
     * @param {string} action
     * @param {Map} namedParams
     * @param {Array} otherParams
     * @param {string} extension
    */
    constructor(all, controller, action, namedParams, otherParams, extension) {
        this.all = all;
        this.controller = controller;
        this.action = action;
        this.namedParams = namedParams;
        this.otherParams = otherParams;
        this.extension = extension;
        Object.freeze(this);
    }
};
exports.default = Route;
//# sourceMappingURL=Route.js.map