Summary: FlipperServerClient is a useful abstraction for any JS-based client of headless Flipper. No need to bundle it with flipper-frontend-core, as the rest is not useful for external clients. Currently, I am planning to add it to jest-e2e to send commands to Flipper Reviewed By: lblasa Differential Revision: D40765668 fbshipit-source-id: af48710bb15444ac1ecd649fe9a2ab252f3088f3
25 lines
797 B
TypeScript
25 lines
797 B
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
export {RenderHost, getRenderHostInstance} from './RenderHost';
|
|
export {
|
|
default as AbstractClient,
|
|
ClientConnection,
|
|
Params,
|
|
RequestMetadata,
|
|
} from './AbstractClient';
|
|
export {default as ArchivedDevice} from './devices/ArchivedDevice';
|
|
export {default as BaseDevice, DeviceExport} from './devices/BaseDevice';
|
|
export {TestDevice} from './devices/TestDevice';
|
|
export * from './globalObject';
|
|
export * from './plugins';
|
|
export {getPluginKey} from './utils/pluginKey';
|
|
export * from './flipperLibImplementation';
|
|
export {default as frontendCoreConstants} from './fb-stubs/constants';
|