kui-shell
Version:
This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool
23 lines (22 loc) • 551 B
TypeScript
import { Table } from '../models/table';
interface Pair {
key: string;
value: string;
valueDom: Element;
css: string;
}
export declare const preprocessTable: (raw: string[]) => Promise<{
rows?: Pair[][];
trailingString?: string;
}[]>;
export declare const outerCSSForKey: {
[key: string]: string;
};
export declare const cssForKey: {
[key: string]: string;
};
export declare const cssForValue: {
[key: string]: string;
};
export declare const formatTable: (entityType: string, lines: Pair[][]) => Table;
export {};