()
| 142 | } |
| 143 | |
| 144 | async renderParameterDescriptions() { |
| 145 | return Promise.all( |
| 146 | this.parameters.map(async (param) => { |
| 147 | param.description = await renderContent(param.description) |
| 148 | return param |
| 149 | }) |
| 150 | ) |
| 151 | } |
| 152 | |
| 153 | async renderBodyParameterDescriptions() { |
| 154 | if (!this.#operation.requestBody) return [] |
no test coverage detected