From b32e65fd519e787eb53c6d85cd4f8d30fb46bf0a Mon Sep 17 00:00:00 2001 From: Oliver Sand Date: Mon, 1 Feb 2021 11:15:28 +0100 Subject: [PATCH] Only reexport CatalogApi from catalog-client --- plugins/catalog-react/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/catalog-react/src/index.ts b/plugins/catalog-react/src/index.ts index b0a9743ea4..9b6e13bb26 100644 --- a/plugins/catalog-react/src/index.ts +++ b/plugins/catalog-react/src/index.ts @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -export * from '@backstage/catalog-client'; +export type { CatalogApi } from '@backstage/catalog-client'; export { catalogApiRef } from './api'; export * from './components'; export * from './hooks';