(lines: string[], enumValue: EnumValue)
| 214 | enum(type: SchemaType): string { |
| 215 | |
| 216 | const reduceEnumValues = (lines: string[], enumValue: EnumValue) => lines |
| 217 | .concat( |
| 218 | [''], |
| 219 | this.description(enumValue.description), [html.property(enumValue.name) + this.deprecated(enumValue)], |
| 220 | ); |
| 221 | |
| 222 | return html.line(html.keyword('enum') + ' ' + html.identifier(type) + ' {') + |
| 223 | type.enumValues |
nothing calls this directly
no test coverage detected