@adamlonsdale/backstage-plugin-armorcode
Version:
Welcome to the `backstage-plugin-armorcode` plugin for Backstage!
15 lines (11 loc) • 643 B
TypeScript
/// <reference types="react" />
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
import { Entity } from '@backstage/catalog-model';
declare const armorcodePlugin: _backstage_core_plugin_api.BackstagePlugin<{
root: _backstage_core_plugin_api.RouteRef<undefined>;
}, {}, {}>;
declare const ArmorcodePage: () => JSX.Element;
declare const ArmorcodeCard: () => JSX.Element;
declare const ARMORCODE_PRODUCT_ANNOTATION = "armorcode/product";
declare const isArmorcodeAvailable: (entity: Entity) => boolean;
export { ARMORCODE_PRODUCT_ANNOTATION, ArmorcodeCard, ArmorcodePage, armorcodePlugin, isArmorcodeAvailable };