@types/animejs
Advanced tools
Comparing version 3.1.2 to 3.1.3
@@ -86,2 +86,20 @@ // Type definitions for animejs 3.1 | ||
interface Animatable { | ||
id: number; | ||
target: HTMLElement; | ||
total: number; | ||
transforms: object; | ||
} | ||
interface Animation { | ||
animatable: Animatable; | ||
currentValue: string; | ||
delay: number; | ||
duration: number; | ||
endDelay: number; | ||
property: string; | ||
tweens: ReadonlyArray<object>; | ||
type: string; | ||
} | ||
interface AnimeInstance extends AnimeCallBack { | ||
@@ -111,4 +129,4 @@ play(): void; | ||
animatables: ReadonlyArray<object>; | ||
animations: ReadonlyArray<object>; | ||
animatables: ReadonlyArray<Animatable>; | ||
animations: ReadonlyArray<Animation>; | ||
} | ||
@@ -115,0 +133,0 @@ |
{ | ||
"name": "@types/animejs", | ||
"version": "3.1.2", | ||
"version": "3.1.3", | ||
"description": "TypeScript definitions for animejs", | ||
@@ -32,4 +32,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "b1f4a157e4af527287b23afd85f037bd5a7ff86a4982369e52493b897f4616e1", | ||
"typeScriptVersion": "3.0" | ||
"typesPublisherContentHash": "b0014865665c5dfac8782788a58ff61eb27774a85e9f32327c313719267a0325", | ||
"typeScriptVersion": "3.5" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Wed, 19 Aug 2020 00:12:24 GMT | ||
* Last updated: Sat, 20 Mar 2021 18:14:36 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: `anime` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8562
152