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

This commit is contained in:
Julien Valverdé
2025-02-19 23:59:34 +01:00
parent 65810a6d79
commit 36d5414d10
4 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
import { Context, Effect, ExecutionStrategy, Exit, Fiber, Pipeable, Ref, Runtime, Scope, Stream, SubscriptionRef } from "effect" import { Context, Effect, ExecutionStrategy, Exit, Fiber, Pipeable, Ref, Runtime, Scope, Stream, SubscriptionRef } from "effect"
import React from "react" import * as React from "react"
import * as ReffuseContext from "./ReffuseContext.js" import * as ReffuseContext from "./ReffuseContext.js"
import * as ReffuseRuntime from "./ReffuseRuntime.js" import * as ReffuseRuntime from "./ReffuseRuntime.js"
import * as SetStateAction from "./SetStateAction.js" import * as SetStateAction from "./SetStateAction.js"

View File

@@ -1,5 +1,5 @@
import { Array, Context, Effect, Layer, Runtime } from "effect" import { Array, Context, Effect, Layer, Runtime } from "effect"
import React from "react" import * as React from "react"
import * as ReffuseRuntime from "./ReffuseRuntime.js" import * as ReffuseRuntime from "./ReffuseRuntime.js"

View File

@@ -1,5 +1,5 @@
import { Runtime } from "effect" import { Runtime } from "effect"
import React from "react" import * as React from "react"
export const Context = React.createContext<Runtime.Runtime<never>>(null!) export const Context = React.createContext<Runtime.Runtime<never>>(null!)

View File

@@ -1,5 +1,5 @@
import { Function } from "effect" import { Function } from "effect"
import type React from "react" import type * as React from "react"
export const value: { export const value: {