| 19 | type RequestBodyOptions = Omit<RequestBodyObject, 'content'>; |
| 20 | |
| 21 | interface ApiBodyMetadata extends RequestBodyOptions { |
| 22 | type?: Type<unknown> | Function | [Function] | string; |
| 23 | isArray?: boolean; |
| 24 | enum?: SwaggerEnumType; |
| 25 | encoding?: EncodingObject; |
| 26 | } |
| 27 | |
| 28 | interface ApiBodySchemaHost extends RequestBodyOptions { |
| 29 | schema: SchemaObject | ReferenceObject; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…