(options: OpenDialogOptions)
| 38 | } |
| 39 | |
| 40 | showOpenDialog(options: OpenDialogOptions): Promise<OpenDialogResult> { |
| 41 | return window.api.dialog.showOpenDialog(options as Electron.OpenDialogOptions) |
| 42 | } |
| 43 | |
| 44 | copyImageToClipboard(dataUrl: string): Promise<{ success: boolean; error?: string }> { |
| 45 | return window.api.clipboard.copyImage(dataUrl) |
nothing calls this directly
no test coverage detected