Make fb-stubs/Logger.tsx strict

Summary: _typescript_

Reviewed By: jknoxville

Differential Revision: D17204281

fbshipit-source-id: c694aed012c30cc325fe507723476a3e6bc43e83
This commit is contained in:
Pascal Hartig
2019-09-09 07:03:00 -07:00
committed by Facebook Github Bot
parent b71ae59545
commit a60bcf7aca

View File

@@ -9,7 +9,7 @@ import {TrackType, Logger} from '../fb-interfaces/Logger';
import {Store} from '../reducers/index';
import ScribeLogger from './ScribeLogger';
let instance: StubLogger = null;
let instance: StubLogger | null = null;
type Args = {
isHeadless?: boolean;