summaryrefslogtreecommitdiffstats
path: root/svg.js.d.ts
diff options
context:
space:
mode:
authorLuma <tomorinao.info@gmail.com>2020-03-23 13:13:14 +0900
committerLuma <tomorinao.info@gmail.com>2020-03-23 13:13:14 +0900
commit217842c8613a753e0628fdd3e674c665e0b017ea (patch)
tree14c0fca89051ea90bcd9ce885cf50904be856361 /svg.js.d.ts
parent0d50ae83bb5457d78e109edfc40253e3fd987230 (diff)
downloadsvg.js-217842c8613a753e0628fdd3e674c665e0b017ea.tar.gz
svg.js-217842c8613a753e0628fdd3e674c665e0b017ea.zip
Add mouseenter()/mouseleave() function definition to types.
Diffstat (limited to 'svg.js.d.ts')
-rw-r--r--svg.js.d.ts2
1 files changed, 2 insertions, 0 deletions
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;