UNPKG

@kinvolk/headlamp-plugin

Version:

The needed infrastructure for building Headlamp plugins.

9 lines (8 loc) 304 B
import { KubeObject } from '../../../lib/k8s/cluster'; type KubeObjectStatus = 'error' | 'success' | 'warning'; /** * Returns status for a given Kube resource * Not all kinds of resources have a status and/or supported */ export declare function getStatus(w: KubeObject): KubeObjectStatus; export {};