UNPKG

kui-shell

Version:

This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool

14 lines (13 loc) 356 B
import { UI } from '@kui-shell/core'; import { KubeResource } from '@kui-shell/plugin-k8s'; interface IconBearer extends KubeResource { spec: { displayName?: string; icon: { base64data: string; mediatype: string; }[]; }; } export declare const iconBadge: UI.BadgeRegistration<IconBearer>; export {};