about summary refs log tree commit diff
path: root/src/lib/routes/types.ts
diff options
context:
space:
mode:
authorChenyu Huang <itschenyu@gmail.com>2025-08-19 15:59:12 -0700
committerChenyu Huang <itschenyu@gmail.com>2025-08-19 15:59:12 -0700
commite32f280f472a6793c10f23d6363e3577dfef39db (patch)
tree19f8cf1d46944dd61a8cecb75d60a2042a68c094 /src/lib/routes/types.ts
parentf42b5831bb831e3b9f925730477a27e01d2b33f4 (diff)
downloadvoidsky-e32f280f472a6793c10f23d6363e3577dfef39db.tar.zst
clean up onSuccess callback
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 f7e7c7eed..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: {fromDialog?: boolean; targetDid?: string}
+  StarterPackWizard: {
+    fromDialog?: boolean
+    targetDid?: string
+    onSuccess?: () => void
+  }
   StarterPackEdit: {rkey?: string}
   VideoFeed: VideoFeedSourceContext
 }