UNPKG

kui-shell

Version:

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

9 lines (8 loc) 340 B
import { Tables } from '@kui-shell/core/api/tables'; interface Pair { key: string; value: string; } export declare const preprocessTable: (raw: string[]) => Pair[][][]; export declare const formatTable: (command: string, verb: string, entityTypeFromCommandLine: string, options: any, preTable: Pair[][]) => Tables.Table; export {};