UNPKG

@kinvolk/headlamp-plugin

Version:

The needed infrastructure for building Headlamp plugins.

12 lines (11 loc) 401 B
export interface PortForwardStartDialogProps { open: boolean; defaultPort?: string; podName: string; namespace: string; containerPort: string | number; onCancel: () => void; onConfirm: (portInput?: string) => void; isDockerDesktop?: boolean; } export default function PortForwardStartDialog(props: PortForwardStartDialogProps): import("react/jsx-runtime").JSX.Element;