(useFinalPosition: boolean)
| 15 | $animations: Record<keyof T, Animation>; |
| 16 | |
| 17 | tooltipPosition(useFinalPosition: boolean): Point { |
| 18 | const {x, y} = this.getProps(['x', 'y'], useFinalPosition); |
| 19 | return {x, y} as Point; |
| 20 | } |
| 21 | |
| 22 | hasValue() { |
| 23 | return isNumber(this.x) && isNumber(this.y); |
no test coverage detected