convert Layout plugin

Summary: _typescript_

Reviewed By: passy

Differential Revision: D17153997

fbshipit-source-id: 308a070b86430a9256beb93b4d3e5f8d5b6c6e52
This commit is contained in:
Daniel Büchele
2019-09-05 02:46:32 -07:00
committed by Facebook Github Bot
parent 705ba8eaa8
commit ef2c6787fa
11 changed files with 238 additions and 184 deletions

View File

@@ -4,4 +4,15 @@
* LICENSE file in the root directory of this source tree.
* @format
*/
export default [];
import {PluginClient, Client, ElementID} from 'flipper';
import {Logger} from 'src/fb-interfaces/Logger';
export default [] as Array<
(
client: PluginClient,
realClient: Client,
selectedNode: ElementID,
logger: Logger,
) => React.ReactNode
>;