UNPKG

flipper-plugin-lib

Version:

Library containing common Flipper plugin installation utilities

17 lines 521 B
/** * 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 type NpmPackageDescriptor = { name: string; version: string; }; export type NpmHostedPluginsSearchArgs = { query?: string; }; export declare function getNpmHostedPlugins(args?: NpmHostedPluginsSearchArgs): Promise<readonly NpmPackageDescriptor[]>; //# sourceMappingURL=getNpmHostedPlugins.d.ts.map