(
title: string,
lines: string[],
options: Omit<SectionTextBlock, 'type' | 'title' | 'lines'> = {},
)
| 207 | } |
| 208 | |
| 209 | function createSection( |
| 210 | title: string, |
| 211 | lines: string[], |
| 212 | options: Omit<SectionTextBlock, 'type' | 'title' | 'lines'> = {}, |
| 213 | ): SectionTextBlock { |
| 214 | return { type: 'section', title, lines, ...options }; |
| 215 | } |
| 216 | |
| 217 | function getResultDiagnostics( |
| 218 | result: ToolDomainResult, |
no outgoing calls
no test coverage detected