kui-shell
Version:
This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool
18 lines (17 loc) • 378 B
TypeScript
import { Commands } from '@kui-shell/core';
interface Options extends Commands.ParsedOptions {
h?: boolean;
help?: boolean;
o?: string;
output?: string;
n?: string;
namespace?: string;
f?: string;
filename?: string;
w?: boolean;
watch?: boolean;
command?: string;
verb?: string;
entityType?: string;
}
export default Options;