kui-shell
Version:
This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool
13 lines (12 loc) • 595 B
TypeScript
import ISubwindowPrefs from '../models/SubwindowPrefs';
export declare function createWindow(noHeadless?: boolean, executeThisArgvPlease?: string[], subwindowPlease?: boolean, subwindowPrefs?: ISubwindowPrefs): void;
interface Command {
argv: string[];
subwindowPlease: boolean;
subwindowPrefs: ISubwindowPrefs;
}
export declare const getCommand: (argv: string[]) => Command;
export declare function initElectron(command?: string[], { isRunningHeadless }?: {
isRunningHeadless?: boolean;
}, subwindowPlease?: boolean, subwindowPrefs?: ISubwindowPrefs): Promise<void>;
export {};