kui-shell
Version:
This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool
10 lines (9 loc) • 483 B
TypeScript
export declare const asSidecarContent: (renderedContent: string | Element, tag?: string) => HTMLDivElement;
export declare const asSidecarEntity: (cmdLine: string, renderedContent: string | Element, options?: {}, tag?: string, prettyType?: string, subtext?: string | Element | Promise<string | Element>) => {
type: string;
prettyType: string;
isEntity: boolean;
subtext: string | Element | Promise<string | Element>;
name: string;
content: HTMLDivElement;
};