moved electron-specific parts of tabby-local into tabby-electron

This commit is contained in:
Eugene Pankov
2023-03-19 12:39:31 +01:00
parent 2e72774548
commit 35ca7015c8
52 changed files with 120 additions and 110 deletions

View File

@@ -176,6 +176,7 @@ export abstract class PlatformService {
abstract setErrorHandler (handler: (_: any) => void): void
abstract popupContextMenu (menu: MenuItemOptions[], event?: MouseEvent): void
abstract showMessageBox (options: MessageBoxOptions): Promise<MessageBoxResult>
abstract pickDirectory (): Promise<string>
abstract quit (): void
}