Fix
All checks were successful
Lint / lint (push) Successful in 11s

This commit is contained in:
Julien Valverdé
2025-08-09 11:54:25 +02:00
parent 6f9e0729fc
commit 5166e5dcfe

View File

@@ -1,4 +1,4 @@
import { type Duration, Effect, flow, identity, Option, type ParseResult, Ref, Schema, Stream, SubscriptionRef, type Types } from "effect"
import { type Duration, Effect, flow, identity, Option, type ParseResult, Ref, Schema, Stream, SubscriptionRef } from "effect"
import * as React from "react"
import { useCallbackSync } from "./useCallbackSync.js"
import { useFork } from "./useFork.js"
@@ -8,8 +8,8 @@ import { useSubscribeRefs } from "./useSubscribeRefs.js"
export namespace useInput {
export interface Options<A, R> {
readonly schema: Schema.Schema<A, string, R>
readonly ref: SubscriptionRef.SubscriptionRef<A>
readonly schema: Schema.Schema<Types.NoInfer<A>, string, R>
readonly debounce?: Duration.Duration
}