Emits a summary from the schema description, or a fallback naming the property by its JSON key.
(description: string | undefined, jsonPropName: string, indent: string)
| 200 | |
| 201 | /** Emits a summary from the schema description, or a fallback naming the property by its JSON key. */ |
| 202 | function xmlDocPropertyComment(description: string | undefined, jsonPropName: string, indent: string): string[] { |
| 203 | if (description) return xmlDocComment(description, indent); |
| 204 | return rawXmlDocSummary(`Gets or sets the <c>${escapeXml(jsonPropName)}</c> value.`, indent); |
| 205 | } |
| 206 | |
| 207 | /** Emits a summary from the schema description, or a generic fallback. */ |
| 208 | function xmlDocEnumComment(description: string | undefined, indent: string): string[] { |
no test coverage detected
searching dependent graphs…