diff options
author | Chenyu Huang <itschenyu@gmail.com> | 2025-08-19 15:59:12 -0700 |
---|---|---|
committer | Chenyu Huang <itschenyu@gmail.com> | 2025-08-19 15:59:12 -0700 |
commit | e32f280f472a6793c10f23d6363e3577dfef39db (patch) | |
tree | 19f8cf1d46944dd61a8cecb75d60a2042a68c094 /src/lib/routes | |
parent | f42b5831bb831e3b9f925730477a27e01d2b33f4 (diff) | |
download | voidsky-e32f280f472a6793c10f23d6363e3577dfef39db.tar.zst |
clean up onSuccess callback
Diffstat (limited to 'src/lib/routes')
-rw-r--r-- | src/lib/routes/types.ts | 6 |
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 } |