@backstage-community/plugin-stackstorm
Version:
A Backstage plugin that integrates towards StackStorm
30 lines (26 loc) • 765 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { ReactNode } from 'react';
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
/**
* @public
*/
type StackstormHomeProps = {
title?: string;
subtitle?: string;
headerButtons?: ReactNode[];
};
/**
* The Backstage plugin that holds stackstorm specific components
*
* @public
*/
declare const stackstormPlugin: _backstage_core_plugin_api.BackstagePlugin<{
root: _backstage_core_plugin_api.RouteRef<undefined>;
}, {}, {}>;
/**
* A component to display a stackstorm home page
*
* @public
*/
declare const StackstormPage: (props: StackstormHomeProps) => react_jsx_runtime.JSX.Element;
export { type StackstormHomeProps, StackstormPage, stackstormPlugin };