feat(app): forward and back buttons

This commit is contained in:
adamelmore 2026-01-26 22:58:29 -06:00
commit 58b9b54600
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
6 changed files with 130 additions and 27 deletions

View file

@ -17,6 +17,12 @@ export type Platform = {
/** Restart the app */
restart(): Promise<void>
/** Navigate back in history */
back(): void
/** Navigate forward in history */
forward(): void
/** Send a system notification (optional deep link) */
notify(title: string, description?: string, href?: string): Promise<void>