explore-react

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2022-08-19 14:43:32 +02:00
parent f918d327a9
commit 9d322594ac
3 changed files with 3 additions and 7 deletions
-6
View File
@@ -5,8 +5,6 @@
```ts
import { ApiRef } from '@backstage/core-plugin-api';
// Warning: (ae-missing-release-tag) "ExploreTool" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type ExploreTool = {
title: string;
@@ -17,16 +15,12 @@ export type ExploreTool = {
lifecycle?: string;
};
// Warning: (ae-missing-release-tag) "ExploreToolsConfig" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export interface ExploreToolsConfig {
// (undocumented)
getTools: () => Promise<ExploreTool[]>;
}
// Warning: (ae-missing-release-tag) "exploreToolsConfigRef" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const exploreToolsConfigRef: ApiRef<ExploreToolsConfig>;
```
+3
View File
@@ -16,10 +16,12 @@
import { createApiRef } from '@backstage/core-plugin-api';
/** @public */
export const exploreToolsConfigRef = createApiRef<ExploreToolsConfig>({
id: 'plugin.explore.toolsconfig',
});
/** @public */
export type ExploreTool = {
title: string;
description?: string;
@@ -29,6 +31,7 @@ export type ExploreTool = {
lifecycle?: string;
};
/** @public */
export interface ExploreToolsConfig {
getTools: () => Promise<ExploreTool[]>;
}
-1
View File
@@ -204,7 +204,6 @@ const ALLOW_WARNINGS = [
'plugins/circleci',
'plugins/cost-insights',
'plugins/dynatrace',
'plugins/explore-react',
'plugins/git-release-manager',
'plugins/github-actions',
'plugins/github-deployments',