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

This commit is contained in:
Julien Valverdé
2025-08-19 20:13:58 +02:00
parent fef1b70b2c
commit 6da857f982
4 changed files with 12 additions and 11 deletions

View File

@@ -1,14 +1,13 @@
export * from "./input/index.js"
export * from "./ScopeOptions.js" export * from "./ScopeOptions.js"
export * from "./useCallbackPromise.js" export * from "./useCallbackPromise.js"
export * from "./useCallbackSync.js" export * from "./useCallbackSync.js"
export * from "./useContext.js" export * from "./useContext.js"
export * from "./useEffect.js" export * from "./useEffect.js"
export * from "./useFork.js" export * from "./useFork.js"
export * from "./useInput.js"
export * from "./useLayoutEffect.js" export * from "./useLayoutEffect.js"
export * from "./useMemo.js" export * from "./useMemo.js"
export * from "./useOnce.js" export * from "./useOnce.js"
export * from "./useOptionalInput.js"
export * from "./useRefFromState.js" export * from "./useRefFromState.js"
export * from "./useRefState.js" export * from "./useRefState.js"
export * from "./useScope.js" export * from "./useScope.js"

View File

@@ -0,0 +1,2 @@
export * from "./useInput.js"
export * from "./useOptionalInput.js"

View File

@@ -1,8 +1,8 @@
import { type Duration, Effect, Equal, type Equivalence, flow, identity, Option, type ParseResult, Ref, Schema, Stream, SubscriptionRef } from "effect" import { type Duration, Effect, Equal, type Equivalence, flow, identity, Option, type ParseResult, Ref, Schema, Stream, SubscriptionRef } from "effect"
import * as React from "react" import * as React from "react"
import { useFork } from "./useFork.js" import { useFork } from "../useFork.js"
import { useOnce } from "./useOnce.js" import { useOnce } from "../useOnce.js"
import { useRefState } from "./useRefState.js" import { useRefState } from "../useRefState.js"
export namespace useInput { export namespace useInput {

View File

@@ -1,11 +1,11 @@
import { type Duration, Effect, Equal, type Equivalence, flow, identity, Option, type ParseResult, Ref, Schema, Stream, SubscriptionRef } from "effect" import { type Duration, Effect, Equal, type Equivalence, flow, identity, Option, type ParseResult, Ref, Schema, Stream, SubscriptionRef } from "effect"
import * as React from "react" import * as React from "react"
import { SetStateAction } from "../../types/index.js" import { SetStateAction } from "../../../types/index.js"
import { useCallbackSync } from "./useCallbackSync.js" import { useCallbackSync } from "../useCallbackSync.js"
import { useFork } from "./useFork.js" import { useFork } from "../useFork.js"
import { useOnce } from "./useOnce.js" import { useOnce } from "../useOnce.js"
import { useRefState } from "./useRefState.js" import { useRefState } from "../useRefState.js"
import { useSubscribeRefs } from "./useSubscribeRefs.js" import { useSubscribeRefs } from "../useSubscribeRefs.js"
export namespace useOptionalInput { export namespace useOptionalInput {