(description: string | undefined)
| 74 | } |
| 75 | |
| 76 | modifyDescription(description: string | undefined): Doc { |
| 77 | return new Doc( |
| 78 | description, |
| 79 | this.since, |
| 80 | this.deprecated, |
| 81 | this.examples, |
| 82 | this.category, |
| 83 | this.throws, |
| 84 | this.sees, |
| 85 | this.tags |
| 86 | ) |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | /** |