feat(app): open in <app> button (#12322)

This commit is contained in:
Adam 2026-02-05 13:55:49 -06:00 committed by GitHub
commit b738d88ec4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
24 changed files with 452 additions and 11 deletions

View file

@ -15,6 +15,9 @@ export type Platform = {
/** Open a URL in the default browser */
openLink(url: string): void
/** Open a local path in a local app (desktop only) */
openPath?(path: string, app?: string): Promise<void>
/** Restart the app */
restart(): Promise<void>