This commit is contained in:
Dan Rose 2025-06-18 09:43:01 -05:00 committed by GitHub
commit e3fada1c53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ export type WatchCallback<V = any, OV = any> = (
value: V,
oldValue: OV,
onCleanup: OnCleanup,
) => any
) => void
export type OnCleanup = (cleanupFn: () => void) => void