RenaiApp/src/main/modules/app-window/url-app-window-interface.d.ts

9 lines
339 B
TypeScript

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