Skip to content

Commit 34ac45f

Browse files
committedDec 2, 2019
fix linting issues
1 parent 787d31e commit 34ac45f

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed
 

‎src/utils.ts

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
declare global {
22
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;
1010
}
1111
}
1212

@@ -28,7 +28,9 @@ const requestAnimFrame = ((): Function => {
2828
);
2929
}
3030

31-
return (): void => {};
31+
return (): void => {
32+
/* return empty function */
33+
};
3234
})();
3335

3436
export type RequestTimeout = object | number | void;

0 commit comments

Comments
 (0)
Please sign in to comment.