(point: DataPoint)
| 64 | }; |
| 65 | |
| 66 | const toScatterTuple = (point: DataPoint): ScatterPointTuple => { |
| 67 | if (isTupleDataPoint(point)) return point; |
| 68 | return [point.x, point.y, point.size] as const; |
| 69 | }; |
| 70 | |
| 71 | const computeDataBounds = ( |
| 72 | data: ReadonlyArray<DataPoint> |
no test coverage detected