From 217842c8613a753e0628fdd3e674c665e0b017ea Mon Sep 17 00:00:00 2001 From: Luma Date: Mon, 23 Mar 2020 13:13:14 +0900 Subject: [PATCH] Add mouseenter()/mouseleave() function definition to types. --- svg.js.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/svg.js.d.ts b/svg.js.d.ts index 5b20b92..e5db341 100644 --- a/svg.js.d.ts +++ b/svg.js.d.ts @@ -1241,6 +1241,8 @@ declare module "@svgdotjs/svg.js" { mouseout(cb: Function | null): this; mouseover(cb: Function | null): this; mouseup(cb: Function | null): this; + mouseenter(cb: Function | null): this; + mouseleave(cb: Function | null): this; move(x: NumberAlias, y: NumberAlias): this; native(): LinkedHTMLElement; next(): Element; -- 2.39.5