(title: string, as: ReadonlyArray<string>)
| 284 | } |
| 285 | |
| 286 | function render(title: string, as: ReadonlyArray<string>) { |
| 287 | if (as.length === 0) return "" |
| 288 | return "// " + title + "\n" + as.join("\n") + "\n" |
| 289 | } |
| 290 | |
| 291 | function renderImportArtifacts(codeDocument: SchemaRepresentation.CodeDocument, enabled: boolean): string { |
| 292 | if (!enabled) return "" |
no test coverage detected