(
// Examples should be specified under the "schema" object
// Top level attributes are ignored
...parameters: Omit<ParameterObject, 'example' | 'examples'>[]
)
| 179 | } |
| 180 | |
| 181 | public addGlobalParameters( |
| 182 | // Examples should be specified under the "schema" object |
| 183 | // Top level attributes are ignored |
| 184 | ...parameters: Omit<ParameterObject, 'example' | 'examples'>[] |
| 185 | ): this { |
| 186 | GlobalParametersStorage.add(...parameters); |
| 187 | return this; |
| 188 | } |
| 189 | |
| 190 | public addSecurityRequirements( |
| 191 | name: string | SecurityRequirementObject, |
no test coverage detected