angular2
Version:
Angular 2 - a web framework for modern web apps
16 lines (15 loc) • 423 B
JavaScript
export class MatchedUrl {
constructor(urlPath, urlParams, allParams, auxiliary, rest) {
this.urlPath = urlPath;
this.urlParams = urlParams;
this.allParams = allParams;
this.auxiliary = auxiliary;
this.rest = rest;
}
}
export class GeneratedUrl {
constructor(urlPath, urlParams) {
this.urlPath = urlPath;
this.urlParams = urlParams;
}
}