useRefState refactpro
All checks were successful
Lint / lint (push) Successful in 13s

This commit is contained in:
Julien Valverdé
2025-02-27 18:32:57 +01:00
parent 7c99d1ff3d
commit 91b95ea6af
3 changed files with 9 additions and 13 deletions

View File

@@ -6,7 +6,7 @@ import { ReffuseExtension, type ReffuseHelpers } from "reffuse"
export interface UseQueryProps<A, E, R> {
effect(): Effect.Effect<A, E, R | Scope.Scope>
effect: () => Effect.Effect<A, E, R | Scope.Scope>
readonly deps?: React.DependencyList
}