kui-shell
Version:
This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool
9 lines (8 loc) • 352 B
TypeScript
import { Commands, UI } from '@kui-shell/core';
interface Options extends Commands.ParsedOptions {
o?: string;
out?: string;
output?: string;
}
export declare const doExec: (tab: UI.Tab, block: HTMLElement, cmdline: string, argvNoOptions: string[], parsedOptions: Options, execOptions: Commands.ExecOptions) => Promise<unknown>;
export {};