@trapi/swagger
Version:
Generate Swagger files from a decorator APIs.
17 lines • 638 B
JavaScript
;
/*
* Copyright (c) 2023.
* Author Peter Placzek (tada5hi)
* For the full copyright and license information,
* view the LICENSE file that was distributed with this source code.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ParameterSourceV3 = void 0;
var ParameterSourceV3;
(function (ParameterSourceV3) {
ParameterSourceV3["COOKIE"] = "cookie";
ParameterSourceV3["HEADER"] = "header";
ParameterSourceV3["PATH"] = "path";
ParameterSourceV3["QUERY"] = "query";
})(ParameterSourceV3 || (exports.ParameterSourceV3 = ParameterSourceV3 = {}));
//# sourceMappingURL=constants.js.map