electron APIs
- app
- BrowserWindow
- ipcRenderer
- ipcMain
- shell
- Menu
- dialog
- remote
- contextBridge
- Tray
- MenuItemConstructorOptions
- screen
- nativeImage
- clipboard
- session
- MenuItem
- protocol
- IpcRendererEvent
- globalShortcut
- webFrame
- IpcMainEvent
- Notification
- Rectangle
- nativeTheme
- BrowserWindowConstructorOptions
- systemPreferences
- WebContents
- IpcMainInvokeEvent
- net
- App
- IpcRenderer
- desktopCapturer
- OpenDialogOptions
- powerMonitor
- OpenDialogReturnValue
- Display
- DesktopCapturerSource
- MessageBoxOptions
- Event
- SaveDialogOptions
- HeadersReceivedResponse
- ContextMenuParams
- HandlerDetails
- WebPreferences
- BrowserView
- Session
- webContents
- NotificationConstructorOptions
- DownloadItem
- powerSaveBlocker
- ProtocolRequest
- ProtocolResponse
- TouchBar
- OnHeadersReceivedListenerDetails
- Extension
- IpcMain
- SaveDialogReturnValue
- OpenDialogSyncOptions
- NewWindowWebContentsEvent
- OpenExternalOptions
- Settings
- Point
- Clipboard
- autoUpdater
- NativeImage
Other Related APIs
electron#SaveDialogReturnValue TypeScript Examples
The following examples show how to use
electron#SaveDialogReturnValue.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ViewerHandler.ts From viewer with MIT License | 6 votes |
/**
* Save file dialog
* @param options
* @returns
*/
public async saveFile(
options: SaveDialogOptions
): Promise<SaveDialogReturnValue> {
return dialog.showSaveDialog(options);
}