thedesk/app/node_modules/about-window/index.d.ts
2018-01-28 21:27:11 +09:00

19 lines
516 B
TypeScript

/// <reference types="electron" />
export interface AboutWindowInfo {
icon_path: string;
package_json_dir?: string;
bug_report_url?: string;
copyright?: string;
homepage?: string;
description?: string;
license?: string;
win_options?: Electron.BrowserWindowConstructorOptions;
css_path?: string;
adjust_window_size?: boolean;
open_devtools?: boolean;
use_inner_html?: boolean;
}
export default function openAboutWindow(into: AboutWindowInfo): Electron.BrowserWindow;