From: Luma Date: Mon, 23 Mar 2020 04:13:14 +0000 (+0900) Subject: Add mouseenter()/mouseleave() function definition to types. X-Git-Tag: 3.1.0~76^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=217842c8613a753e0628fdd3e674c665e0b017ea;p=svg.js.git Add mouseenter()/mouseleave() function definition to types. --- 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;