Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 943 Bytes

File metadata and controls

36 lines (29 loc) · 943 Bytes

API Report File for "@backstage/plugin-fossa"

Do not edit this file. It is a report generated by API Extractor.

/// <reference types="react" />

import { BackstagePlugin } from '@backstage/core-plugin-api';
import { InfoCardVariants } from '@backstage/core-components';
import { RouteRef } from '@backstage/core-plugin-api';

// @public (undocumented)
export const EntityFossaCard: (props: {
  variant?: InfoCardVariants | undefined;
}) => JSX.Element;

// @public (undocumented)
export const FossaPage: (props: FossaPageProps) => JSX.Element;

// @public (undocumented)
export type FossaPageProps = {
  entitiesFilter?:
    | Record<string, string | symbol | (string | symbol)[]>[]
    | Record<string, string | symbol | (string | symbol)[]>
    | undefined;
};

// @public (undocumented)
export const fossaPlugin: BackstagePlugin<
  {
    fossaOverview: RouteRef<undefined>;
  },
  {},
  {}
>;