build api-reports
Signed-off-by: Daniele.Mazzotta <daniele.mazzotta@tii.ae>
This commit is contained in:
@@ -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)
|
||||
//
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user