(index: number)
| 298 | }; |
| 299 | |
| 300 | const getSeriesPointCount = (index: number): number => { |
| 301 | return getSeriesEntry(index).pointCount; |
| 302 | }; |
| 303 | |
| 304 | const getSeriesData = (index: number): ReadonlyArray<DataPoint> => { |
| 305 | return getSeriesEntry(index).data; |
nothing calls this directly
no test coverage detected