(title: string)
| 23 | private readonly document: Omit<OpenAPIObject, 'paths'> = buildDocumentBase(); |
| 24 | |
| 25 | public setTitle(title: string): this { |
| 26 | this.document.info.title = title; |
| 27 | return this; |
| 28 | } |
| 29 | |
| 30 | public setDescription(description: string): this { |
| 31 | this.document.info.description = description; |
no outgoing calls
no test coverage detected