Minor: remove two anys from <CallScreen>

This commit is contained in:
Evan Hahn 2020-10-01 11:16:20 -05:00 committed by Josh Perez
parent 9510fd1eec
commit 2637d90df0
2 changed files with 4 additions and 6 deletions

View file

@ -56,11 +56,9 @@ type StateType = {
};
export class CallScreen extends React.Component<PropsType, StateType> {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
private interval: any;
private interval: NodeJS.Timeout | null;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
private controlsFadeTimer: any;
private controlsFadeTimer: NodeJS.Timeout | null;
private readonly localVideoRef: React.RefObject<HTMLVideoElement>;