build api-reports

Signed-off-by: Daniele.Mazzotta <daniele.mazzotta@tii.ae>
This commit is contained in:
Daniele.Mazzotta
2022-06-17 17:50:27 +04:00
parent 221fbffe44
commit d9ebda237e
2 changed files with 16 additions and 2 deletions
+9 -2
View File
@@ -5,8 +5,15 @@
```ts
/// <reference types="react" />
import { BackstagePlugin } from '@backstage/core-plugin-api';
import { RouteRef } from '@backstage/core-plugin-api';
import {BackstagePlugin} from '@backstage/core-plugin-api';
import {RouteRef} from '@backstage/core-plugin-api';
// @public
export const ApacheAirflowDagTable: ({
dagIds,
}: {
dagIds?: string[] | undefined;
}) => JSX.Element;
// Warning: (ae-missing-release-tag) "ApacheAirflowPage" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
+7
View File
@@ -51,6 +51,13 @@ export const ApacheAirflowPage = apacheAirflowPlugin.provide(
}),
);
/**
* Render the DAGs in a table
* If the dagIds is specified, only those DAGs are loaded.
* Otherwise, it's going to list all the DAGs
* @public
* @param dagIds - string[]
*/
export const ApacheAirflowDagTable = apacheAirflowPlugin.provide(
createComponentExtension({
name: 'ApacheAirflowDagTable',