UNPKG

kui-shell

Version:

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

16 lines (15 loc) 700 B
import { SidecarMode } from './bottom-stripe'; import { Badge } from './views/badge'; import Presentation from './views/presentation'; import Formattable from './views/formattable'; import { ExecOptions } from '../models/execOptions'; export interface PopupEntity { prettyType?: string; modes?: SidecarMode[]; badges?: Badge[]; controlHeaders?: boolean | string[]; presentation?: Presentation; subtext?: Formattable; } export declare const renderPopupContent: (command: string, container: Element, execOptions: ExecOptions, entity?: PopupEntity) => Promise<void>; export declare const createPopupContentContainer: (css?: string[], presentation?: Presentation) => HTMLElement;