UNPKG

@sleekify/sleekify

Version:

A TypeScript decorator driven approach for developing web applications.

21 lines (20 loc) 768 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.POST = void 0; const Annotation_1 = require("./Annotation"); /** * You may apply this decorator to your resource class's methods to indicate * that a method responds to HTTP POST requests. It allows you to annotate * the method with an OpenAPI operation object so you can define this * operation's documentation. * * @param operationObject The optional OpenAPI operation object definition */ function POST(operationObject) { return function (target, propertyKey, _descriptor) { Annotation_1.Annotation.set(target, propertyKey, POST, operationObject); }; } exports.POST = POST; ; Annotation_1.Annotation.register(POST, '4dd15507-a6d8-4520-8fe4-d93b3487e000');