Migrate constants

Summary: We can't `*`-export as the symbols are invisible but being explicit about this seems like a good improvement anyway.

Reviewed By: danielbuechele

Differential Revision: D16666637

fbshipit-source-id: 8f9a14ed41f4d8ad93b4bab8dd54f3b6c9e24824
This commit is contained in:
Pascal Hartig
2019-08-09 03:16:42 -07:00
committed by Facebook Github Bot
parent e602e1ccae
commit 798d6d2ed4
5 changed files with 31 additions and 29 deletions

View File

@@ -21,7 +21,7 @@ export type {PluginClient, Props} from './plugin.tsx';
export type {MetricType} from './utils/exportMetrics.js';
export {default as Client} from './Client.tsx';
export {clipboard} from 'electron';
export * from './fb-stubs/constants.js';
export {default as constants} from './fb-stubs/constants.tsx';
export {connect} from 'react-redux';
export {selectPlugin} from './reducers/connections.tsx';
export {getPluginKey, getPersistedState} from './utils/pluginUtils.js';