UNPKG

@kinvolk/headlamp-plugin

Version:

The needed infrastructure for building Headlamp plugins.

9 lines (8 loc) 323 B
import { ApiError } from '../../lib/k8s/api/v2/ApiError'; export interface ClusterGroupErrorMessageProps { /** * Array of errors */ errors?: ApiError[] | null; } export declare function ClusterGroupErrorMessage({ errors }: ClusterGroupErrorMessageProps): import("react/jsx-runtime").JSX.Element[] | null;