From 0a40d3099efa6f0900052e58995dd0a6f638352d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Morel?= Date: Thu, 3 Feb 2022 16:45:22 +0100 Subject: [PATCH] add missing mouse events to CoreChartOptions.events type --- types/index.esm.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/types/index.esm.d.ts b/types/index.esm.d.ts index 241de62a110..c1a79d4cf68 100644 --- a/types/index.esm.d.ts +++ b/types/index.esm.d.ts @@ -1495,7 +1495,14 @@ export interface CoreChartOptions extends ParsingOption events: ( 'mousemove' | 'mouseout' | + 'mouseenter' | + 'mouseleave' | + 'mousedown' | + 'mouseup' | 'click' | + 'dblclick' | + 'mouseover' | + 'contextmenu' | 'touchstart' | 'touchmove' | 'touchend' |