warn before opening external app-specific URIs

This commit is contained in:
Eugene
2026-05-04 17:49:43 +02:00
parent 3ab66eedca
commit fb9bec8ed7
3 changed files with 41 additions and 4 deletions
+1 -1
View File
@@ -262,7 +262,7 @@ export abstract class PlatformService {
abstract getOSRelease (): string
abstract getAppVersion (): string
abstract openExternal (url: string): void
abstract openExternal (url: string): Promise<void>
abstract listFonts (): Promise<string[]>
abstract setErrorHandler (handler: (_: any) => void): void
abstract popupContextMenu (menu: MenuItemOptions[], event?: MouseEvent): void