(displayParts?: ts.SymbolDisplayPart[])
| 2375 | } |
| 2376 | |
| 2377 | function toText(displayParts?: ts.SymbolDisplayPart[]): string { |
| 2378 | return (displayParts ?? []).map((p) => p.text).join(''); |
| 2379 | } |
| 2380 | |
| 2381 | function setup( |
| 2382 | template: string, |
no test coverage detected
searching dependent graphs…