(style?: Style)
| 21 | } |
| 22 | |
| 23 | function stroke(style?: Style): string { |
| 24 | return style?.lineColor ?? "black"; |
| 25 | } |
| 26 | |
| 27 | function strokeWidth(style?: Style): number { |
| 28 | return style?.lineThickness ?? 1; |
no outgoing calls
no test coverage detected
searching dependent graphs…