kui-shell
Version:
This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool
7 lines (6 loc) • 370 B
TypeScript
import { Commands, UI } from '@kui-shell/core';
import { Channel } from './channel';
export declare function getChannelForTab(tab: UI.Tab): Channel;
export declare function pollUntilOnline(tab: UI.Tab, block?: HTMLElement): Promise<unknown>;
export declare function registerCommands(commandTree: Commands.Registrar): void;
export declare function init(): Promise<void>;