@digital-ai/plugin-dai-release
Version:
Frontend functionalities for the dai-release backstage plugin
14 lines (10 loc) • 589 B
TypeScript
/// <reference types="react" />
import * as react from 'react';
import { FunctionComponent } from 'react';
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
declare const daiReleasePlugin: _backstage_core_plugin_api.BackstagePlugin<{}, {}, {}>;
declare const DaiReleasePage: () => react.JSX.Element;
declare const DaiTemplatePage: () => react.JSX.Element;
declare const DaiWorkflowCatalog: () => react.JSX.Element;
declare const ReleaseSvgIcon: FunctionComponent;
export { DaiReleasePage, DaiTemplatePage, DaiWorkflowCatalog, ReleaseSvgIcon, daiReleasePlugin };