import type { LoadURLOptions } from 'electron'; import type { AppWindowInterface } from './app-window-interface'; interface UrlAppWindowInterface extends AppWindowInterface { downloadUrlSafe(url: string, savePath: string, options?: LoadURLOptions): Promise; loadUrlSafe(url: string, options?: LoadURLOptions): Promise; }