(p: DataPoint)
| 11 | // Type guard for the tuple form of DataPoint. We define this explicitly because `Array.isArray(...)` |
| 12 | // narrows to `any[]`, which does not reliably narrow `readonly [...]` tuples in strict TS configs. |
| 13 | const isTuplePoint = (p: DataPoint): p is readonly [x: number, y: number, size?: number] => Array.isArray(p); |
| 14 | |
| 15 | type DisposableResizeObserver = Pick<ResizeObserver, 'observe' | 'unobserve' | 'disconnect'>; |
| 16 |
no outgoing calls
no test coverage detected