UNPKG

@kinvolk/headlamp-plugin

Version:

The needed infrastructure for building Headlamp plugins.

10 lines (9 loc) 328 B
import { GraphNode } from '../graph/graphModel'; export interface GraphNodeDetailsProps { /** Node to display */ node?: GraphNode; } /** * Side panel display information about a selected Node */ export declare function GraphNodeDetails({ node }: GraphNodeDetailsProps): import("react/jsx-runtime").JSX.Element | null;