( ctx: CanvasRenderingContext2D, options: DrawPointOptions, x: number, y: number )
| 154 | } |
| 155 | |
| 156 | export function drawPoint( |
| 157 | ctx: CanvasRenderingContext2D, |
| 158 | options: DrawPointOptions, |
| 159 | x: number, |
| 160 | y: number |
| 161 | ) { |
| 162 | // eslint-disable-next-line @typescript-eslint/no-use-before-define |
| 163 | drawPointLegend(ctx, options, x, y, null); |
| 164 | } |
| 165 | |
| 166 | // eslint-disable-next-line complexity |
| 167 | export function drawPointLegend( |
no test coverage detected