(styleHost: { style: graphic.Path['style'] })
| 110 | // Using fill in style if stroke not exits. |
| 111 | // TODO Not sure yet. Perhaps a separate `lineStyle`? |
| 112 | function fixLineStyle(styleHost: { style: graphic.Path['style'] }) { |
| 113 | const style = styleHost.style; |
| 114 | if (style) { |
| 115 | style.stroke = (style.stroke || style.fill); |
| 116 | style.fill = null; |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | class MapDraw { |
| 121 |
no outgoing calls
no test coverage detected
searching dependent graphs…