UNPKG

kui-shell

Version:

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

12 lines (11 loc) 555 B
import { Tab } from './tab'; import { ExecOptions } from '../models/execOptions'; import { EntitySpec } from '../models/entity'; interface PipOptions { parent?: Element; exec?: 'qexec' | 'pexec'; execOptions?: ExecOptions; } declare type StringProducing = () => Promise<string>; export declare const drilldown: (tab: Tab, command?: string | EntitySpec | StringProducing, highlightThis?: Element | Element[], ccontainer?: string | Element, returnTo?: string, options?: PipOptions) => (event?: Event) => Promise<void>; export default drilldown;