about summary refs log tree commit diff
path: root/src/lib/routes/types.ts
diff options
context:
space:
mode:
authorjim <310223+jimmylee@users.noreply.github.com>2025-08-25 23:23:20 -0700
committerGitHub <noreply@github.com>2025-08-25 23:23:20 -0700
commitbc8e3ba30b0dd679edf88f0f6038f012b909901f (patch)
treecbd07bca40c9b6d9f79450e07466b8c0c929b6a1 /src/lib/routes/types.ts
parente4c5fb7de5b0083ee833acbd039312ce64a83501 (diff)
parentf84a75669157ed5d2dab2a426d9ff5fefb86a9bb (diff)
downloadvoidsky-bc8e3ba30b0dd679edf88f0f6038f012b909901f.tar.zst
Merge pull request #8806 from internet-development/binaryfiddler/starter-pack-part2
Starter pack dialog implementations
Diffstat (limited to 'src/lib/routes/types.ts')
-rw-r--r--src/lib/routes/types.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts
index b1db5caa6..1725fdfb4 100644
--- a/src/lib/routes/types.ts
+++ b/src/lib/routes/types.ts
@@ -79,7 +79,11 @@ export type CommonNavigatorParams = {
   Start: {name: string; rkey: string}
   StarterPack: {name: string; rkey: string; new?: boolean}
   StarterPackShort: {code: string}
-  StarterPackWizard: undefined
+  StarterPackWizard: {
+    fromDialog?: boolean
+    targetDid?: string
+    onSuccess?: () => void
+  }
   StarterPackEdit: {rkey?: string}
   VideoFeed: VideoFeedSourceContext
 }