File tree 1 file changed +10
-8
lines changed
1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 1
1
declare global {
2
2
interface Window {
3
- mozRequestAnimationFrame : any ;
4
- oRequestAnimationFrame : any ;
5
- msRequestAnimationFrame : any ;
6
- mozCancelRequestAnimationFrame : any ;
7
- webkitCancelRequestAnimationFrame : any ;
8
- oCancelRequestAnimationFrame : any ;
9
- msCancelRequestAnimationFrame : any ;
3
+ mozRequestAnimationFrame ;
4
+ oRequestAnimationFrame ;
5
+ msRequestAnimationFrame ;
6
+ mozCancelRequestAnimationFrame ;
7
+ webkitCancelRequestAnimationFrame ;
8
+ oCancelRequestAnimationFrame ;
9
+ msCancelRequestAnimationFrame ;
10
10
}
11
11
}
12
12
@@ -28,7 +28,9 @@ const requestAnimFrame = ((): Function => {
28
28
) ;
29
29
}
30
30
31
- return ( ) : void => { } ;
31
+ return ( ) : void => {
32
+ /* return empty function */
33
+ } ;
32
34
} ) ( ) ;
33
35
34
36
export type RequestTimeout = object | number | void ;
You can’t perform that action at this time.
0 commit comments