UNPKG

kui-shell

Version:

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

14 lines (13 loc) 624 B
import { Tab } from '../tab'; import { Table, MultiTable, Row } from '../models/table'; interface TableFormatOptions { usePip?: boolean; } export declare const formatOneRowResult: (tab: Tab, options?: RowFormatOptions) => (entity: Row) => HTMLElement; export declare const formatTable: (tab: Tab, response: Table | MultiTable, resultDom: HTMLElement, options?: TableFormatOptions) => void; export interface RowFormatOptions extends TableFormatOptions { excludePackageName?: boolean; useRepeatingEffect?: boolean; } export declare const formatTableResult: (tab: Tab, response: Table) => HTMLElement[]; export {};