Migrate PluginDebugger from js to tsx

Summary: Migrated PluginDebugger.js to PluginDebugger.tsx

Reviewed By: passy

Differential Revision: D16732025

fbshipit-source-id: c4ff5586f823e90eba14eef5a8dac114a058763b
This commit is contained in:
Benjamin Elo
2019-08-12 05:49:44 -07:00
committed by Facebook Github Bot
parent 8bbc03e138
commit e4b071e867
3 changed files with 29 additions and 28 deletions

View File

@@ -28,8 +28,9 @@ import {default as config} from '../utils/processConfig';
import isProduction from '../utils/isProduction';
export type PluginDefinition = {
id?: string;
name: string;
out: string;
out?: string;
gatekeeper?: string;
entry?: string;
};