UNPKG

kui-shell

Version:

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

17 lines (16 loc) 778 B
import { Commands, UI } from '@kui-shell/core'; import { KubeStatus, KubeResource } from '../model/resource'; declare const describe: ({ command, parsedOptions, execOptions }: Commands.Arguments<Commands.ParsedOptions>) => Promise<{ type: string; isEntity: boolean; name: string; nameHash: string; duration: number; badges: UI.Badge[]; version: string; resource: KubeResource<KubeStatus>; modes: UI.Mode<string | Commands.CustomResponse<void> | import("@kui-shell/core/webapp/bottom-stripe").DirectViewControllerFunction<object, object> | import("@kui-shell/core/webapp/bottom-stripe").DirectViewControllerSpec>[]; contentType: string | number | true | string[]; content: string | Record<string, string>; }>; export default describe;