interface SubwindowPrefs { cwd?: string; env?: Record; 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;