(paramName, paramType, exampleList = [])
| 315 | } |
| 316 | |
| 317 | exampleListTemplate(paramName, paramType, exampleList = []) { |
| 318 | return html` ${ |
| 319 | exampleList.length > 0 |
| 320 | ? html`<span style="font-weight:bold">Examples: </span> |
| 321 | ${anyExampleWithSummaryOrDescription(exampleList) |
| 322 | ? this.renderLongFormatExamples(exampleList, paramType, paramName) |
| 323 | : this.renderShortFormatExamples(exampleList, paramType, paramName)}` |
| 324 | : '' |
| 325 | }`; |
| 326 | } |
| 327 | |
| 328 | inputParametersTemplate(paramType) { |
| 329 | const filteredParams = this.parameters ? this.parameters.filter((param) => param.in === paramType) : []; |
nothing calls this directly
no test coverage detected