(index: number)
| 302 | }; |
| 303 | |
| 304 | const getSeriesData = (index: number): ReadonlyArray<DataPoint> => { |
| 305 | return getSeriesEntry(index).data; |
| 306 | }; |
| 307 | |
| 308 | const dispose = (): void => { |
| 309 | if (disposed) return; |
nothing calls this directly
no test coverage detected