@trapi/swagger
Version:
Generate Swagger files from a decorator APIs.
18 lines • 683 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.ParameterSourceV2 = void 0;
var ParameterSourceV2;
(function (ParameterSourceV2) {
ParameterSourceV2["BODY"] = "body";
ParameterSourceV2["FORM_DATA"] = "formData";
ParameterSourceV2["HEADER"] = "header";
ParameterSourceV2["PATH"] = "path";
ParameterSourceV2["QUERY"] = "query";
})(ParameterSourceV2 || (exports.ParameterSourceV2 = ParameterSourceV2 = {}));
//# sourceMappingURL=constants.js.map