fix: build api report

Signed-off-by: Ben Keil <benkeil.pub@pm.me>
This commit is contained in:
Ben Keil
2023-11-03 22:31:20 +01:00
parent 92a5822daa
commit 965c49d6bd
+2 -6
View File
@@ -8,9 +8,9 @@
import { BackstagePlugin } from '@backstage/core-plugin-api';
import { CompoundEntityRef } from '@backstage/catalog-model';
import { DependencyGraphTypes } from '@backstage/core-components';
import { Entity } from '@backstage/catalog-model/';
import { ExternalRouteRef } from '@backstage/core-plugin-api';
import { InfoCardVariants } from '@backstage/core-components';
import { JsonObject } from '@backstage/types';
import { JSX as JSX_2 } from 'react';
import { MouseEvent as MouseEvent_2 } from 'react';
import { MouseEventHandler } from 'react';
@@ -90,11 +90,7 @@ export type EntityNode = DependencyGraphTypes.DependencyNode<EntityNodeData>;
// @public
export type EntityNodeData = {
name: string;
kind?: string;
title?: string;
namespace: string;
spec?: JsonObject;
entity: Entity;
focused?: boolean;
color?: 'primary' | 'secondary' | 'default';
onClick?: MouseEventHandler<unknown>;