Commit 0025f87 1 parent 48ff382 commit 0025f87 Copy full SHA for 0025f87
File tree 1 file changed +13
-1
lines changed
1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 32
32
Element . prototype . animate = function ( frames , options ) { } ;
33
33
34
34
/**
35
+ * @param {GetAnimationsOptions= } options
35
36
* @return {!Array<!Animation> }
37
+ * @see https://www.w3.org/TR/web-animations/#dom-animatable-getanimations
36
38
*/
37
- Element . prototype . getAnimations = function ( ) { } ;
39
+ Element . prototype . getAnimations = function ( options ) { } ;
38
40
39
41
/**
40
42
* @return {!Array<!Animation> }
@@ -438,3 +440,13 @@ GroupEffect.prototype.timing;
438
440
439
441
/** @type {!Array<!AnimationEffect> } */
440
442
GroupEffect . prototype . children ;
443
+
444
+
445
+ /**
446
+ * @record
447
+ * @see https://www.w3.org/TR/web-animations/#dom-animatable-getanimations
448
+ */
449
+ var GetAnimationsOptions = function ( ) { } ;
450
+
451
+ /** @type {(undefined|boolean) } */
452
+ GetAnimationsOptions . prototype . subtree ;
You can’t perform that action at this time.
0 commit comments