@kinvolk/headlamp-plugin
Version:
The needed infrastructure for building Headlamp plugins.
11 lines (10 loc) • 347 B
TypeScript
import '@xterm/xterm/css/xterm.css';
import { DialogProps } from '@mui/material/Dialog';
import Pod from '../../lib/k8s/pod';
interface TerminalProps extends DialogProps {
item: Pod;
isAttach?: boolean;
onClose?: () => void;
}
export default function Terminal(props: TerminalProps): import("react/jsx-runtime").JSX.Element;
export {};