Client fixes

Summary:
Event emitter was typed any. Therefore, Client extended any and thing went south.
removing the explicit any type and fixing flow errors.

Reviewed By: jknoxville

Differential Revision: D15987630

fbshipit-source-id: 9456149d46f839d9579fcc2671ab2a82935fc23a
This commit is contained in:
Daniel Büchele
2019-07-01 02:32:12 -07:00
committed by Facebook Github Bot
parent 1a0ee24b1a
commit 468468a3bc
3 changed files with 7 additions and 7 deletions

View File

@@ -11,6 +11,7 @@ import {performance} from 'perf_hooks';
import type {Store} from '../reducers/index.js';
import type {Logger} from '../fb-interfaces/Logger.js';
import type Client from '../Client';
export default (store: Store, logger: Logger) => {
let droppedFrames: number = 0;