(description: string[] | readonly string[])
| 83 | |
| 84 | protected description: string[] | null = null; |
| 85 | withDescription(description: string[] | readonly string[]) { |
| 86 | this.description = description as string[]; |
| 87 | return this; |
| 88 | } |
| 89 | |
| 90 | appendDescription(description: string | string[], ...rest: string[]) { |
| 91 | this.description ??= []; |
no outgoing calls
no test coverage detected