1 | ;
|
2 | // Copyright IBM Corp. and LoopBack contributors 2018,2020. All Rights Reserved.
|
3 | // Node module: @loopback/rest
|
4 | // This file is licensed under the MIT License.
|
5 | // License text available at https://opensource.org/licenses/MIT
|
6 | Object.defineProperty(exports, "__esModule", { value: true });
|
7 | exports.createResolvedRoute = void 0;
|
8 | function createResolvedRoute(route, pathParams) {
|
9 | return Object.create(route, {
|
10 | pathParams: {
|
11 | writable: false,
|
12 | value: pathParams,
|
13 | },
|
14 | schemas: {
|
15 | value: {},
|
16 | },
|
17 | });
|
18 | }
|
19 | exports.createResolvedRoute = createResolvedRoute;
|
20 | //# sourceMappingURL=route-entry.js.map |
\ | No newline at end of file |