Format a comment string as a TypeScript comment.
(content: string | null)
| 109 | |
| 110 | /** Format a comment string as a TypeScript comment. */ |
| 111 | private formatComment(content: string | null): string { |
| 112 | return content === null || content.length === 0 ? '' : ` /*${content}*/`; |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | /** |