@kui-shell/core
Version:
An Electron-based shell for cloud-native development
25 lines (24 loc) • 659 B
TypeScript
interface SubwindowPrefs {
cwd?: string;
env?: Record<any, any>;
fullscreen?: boolean;
useContentSize?: boolean;
synonymFor?: object;
/** Use this window width */
width?: number;
/** Use this window height */
height?: number;
/** Use this window title */
title?: string;
/** Use this as the initial title for the first tab */
initialTabTitle?: string;
/** Internal: this is not a Kui window */
_notAKuiWindow?: boolean;
quietExecCommand?: boolean;
position?: () => Promise<{
x: number;
y: number;
}>;
bringYourOwnWindow?: () => void;
}
export default SubwindowPrefs;