Files
flipper/desktop/flipper-plugin/src/server.tsx
Andrey Goncharov 0f038218f8 Share uuid
Summary: Expose uuid from flipper-common as it is required in multiple packages

Reviewed By: lblasa

Differential Revision: D36441889

fbshipit-source-id: 1fa539cb437976dbefe7d5d9a52e5e098a6402a7
2022-05-18 03:13:31 -07:00

25 lines
510 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
*/
// Exports for server add-ons
import * as path from './utils/path';
export {path};
export {safeStringify} from './utils/safeStringify';
export {
sleep,
timeout,
createControlledPromise,
uuid,
ServerAddOn,
ServerAddOnPluginConnection,
FlipperServerForServerAddOn,
} from 'flipper-common';