Remove unused variables (#22097)

Summary:
Fix unused variable ESLint warnings.
Pull Request resolved: https://github.com/facebook/react-native/pull/22097

Differential Revision: D12919249

Pulled By: TheSavior

fbshipit-source-id: f680fa7277c58cf685e70dfb911753a30fe01c1d
This commit is contained in:
Ignacio Olaciregui
2018-11-04 10:39:44 -08:00
committed by Facebook Github Bot
parent 01b7c48852
commit 6ebee18d13
9 changed files with 11 additions and 94 deletions

View File

@@ -10,16 +10,6 @@
'use strict';
type DevToolsPluginConnection = {
isAppActive: () => boolean,
host: string,
port: number,
};
type DevToolsPlugin = {
connectToDevTools: (connection: DevToolsPluginConnection) => void,
};
let register = function() {
// noop
};