diff options
author | Hailey <me@haileyok.com> | 2024-06-27 19:35:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 19:35:20 -0700 |
commit | 91c4aa7c2dc598dd5e2c828e44c0d2c94cf0967d (patch) | |
tree | 362f79f88bab8107053c1fe0201ddcb4d0d21ac5 /src/lib/routes/types.ts | |
parent | 030c8e268e161bebe360e3ad97b1c18bd8425ca8 (diff) | |
download | voidsky-91c4aa7c2dc598dd5e2c828e44c0d2c94cf0967d.tar.zst |
Handle pressing all go.bsky.app links in-app w/ resolution (#4680)
Diffstat (limited to 'src/lib/routes/types.ts')
-rw-r--r-- | src/lib/routes/types.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index 8a173b675..9d102f248 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -44,6 +44,7 @@ export type CommonNavigatorParams = { Feeds: undefined Start: {name: string; rkey: string} StarterPack: {name: string; rkey: string; new?: boolean} + StarterPackShort: {code: string} StarterPackWizard: undefined StarterPackEdit: { rkey?: string @@ -101,6 +102,7 @@ export type AllNavigatorParams = CommonNavigatorParams & { Messages: {animation?: 'push' | 'pop'} Start: {name: string; rkey: string} StarterPack: {name: string; rkey: string; new?: boolean} + StarterPackShort: {code: string} StarterPackWizard: undefined StarterPackEdit: { rkey?: string |