UNPKG

@kinvolk/headlamp-plugin

Version:

The needed infrastructure for building Headlamp plugins.

10 lines (9 loc) 490 B
import { KubeObject } from '../../../lib/k8s/KubeObject'; import { HeadlampEvent } from '../../../redux/headlampEventSlice'; interface LogsButtonProps { item: KubeObject | null; } export declare const LOGGABLE_WORKLOAD_KINDS: ReadonlySet<string>; export declare function launchWorkloadLogs(item: KubeObject, dispatchHeadlampEvent?: (event: HeadlampEvent) => void): void; export declare function LogsButton({ item }: LogsButtonProps): import("react/jsx-runtime").JSX.Element; export {};