@kinvolk/headlamp-plugin
Version:
The needed infrastructure for building Headlamp plugins.
7 lines (6 loc) • 320 B
TypeScript
import { LabelSelector } from '../../../lib/k8s/cluster';
export interface MatchExpressionsProps {
matchLabels?: LabelSelector['matchLabels'];
matchExpressions?: LabelSelector['matchExpressions'];
}
export declare function MatchExpressions(props: MatchExpressionsProps): import("react/jsx-runtime").JSX.Element;