kui-shell
Version:
This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool
10 lines (9 loc) • 471 B
TypeScript
import { Commands, UI } from '@kui-shell/core';
import { CommandResponse } from '../response';
import { Entity as EditorEntity } from '../fetchers';
interface Options extends Commands.ParsedOptions {
language?: string;
}
export declare const edit: (tab: UI.Tab, entity: EditorEntity, options: Options, execOptions: Commands.ExecOptions) => Promise<CommandResponse>;
declare const _default: (commandTree: Commands.Registrar) => Promise<void>;
export default _default;