UNPKG

@rxap/nest-open-api

Version:

This package provides tools and utilities for integrating OpenAPI specifications into NestJS applications. It includes features for handling upstream API requests, managing server configurations, and generating OpenAPI documentation. It also offers interc

10 lines (9 loc) 332 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OperationCommand = OperationCommand; const tokens_1 = require("./tokens"); function OperationCommand(operation) { return function (target) { Reflect.defineMetadata(tokens_1.OPERATION_COMMAND_META_DATA_KEY, operation, target); }; }