UNPKG

kui-shell

Version:

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

12 lines (11 loc) 580 B
import Commands from '@kui-shell/core/api/commands'; import Tables from '@kui-shell/core/api/tables'; import Options from './options'; import { KubeResource } from '../model/resource'; import { FinalState } from '../model/states'; interface FinalStateOptions extends Options { 'final-state'?: FinalState; } export declare const status: (command: string) => (args: Commands.Arguments<FinalStateOptions>) => Promise<KubeResource<import("../model/resource").KubeStatus> | Tables.Table>; declare const _default: (commandTree: Commands.Registrar) => void; export default _default;