(description: string | ((controller: any) => string))
| 35 | } |
| 36 | |
| 37 | export function ApiOperationDescription(description: string | ((controller: any) => string)): OpenApiDecorator { |
| 38 | return Reflect.metadata('api:operation:description', description); |
| 39 | } |
| 40 | |
| 41 | export function ApiOperationId(operationId: string | ((controller: any) => string)): OpenApiDecorator { |
| 42 | return Reflect.metadata('api:operation:operationId', operationId); |
no outgoing calls
no test coverage detected