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

This commit is contained in:
Julien Valverdé
2025-08-22 18:11:00 +02:00
parent ed95e7789d
commit 4ece8729c7
2 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
import { Effect, PubSub, Ref, Scope, Stream } from "effect"
import * as React from "react"
import { Effect, PubSub, Ref, type Scope, Stream } from "effect"
import type * as React from "react"
import { useEffect } from "./useEffect.js"
import { useOnce } from "./useOnce.js"

View File

@@ -1,4 +1,4 @@
import { Effect, Effectable, Readable, Stream, Subscribable } from "effect"
import { type Effect, Effectable, Readable, type Stream, Subscribable } from "effect"
class SubscribableImpl<A, E, R>