| 1 | export interface Parameter { |
| 2 | in: string |
| 3 | name: string |
| 4 | description: string |
| 5 | required: boolean |
| 6 | schema: { |
| 7 | type: string |
| 8 | default?: string |
| 9 | enum?: Array<string> |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | export interface BodyParameter { |
| 14 | in: string |
nothing calls this directly
no outgoing calls
no test coverage detected