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

This commit is contained in:
Julien Valverdé
2025-04-20 05:10:51 +02:00
parent 31dd7b5fdb
commit 682e473bf7

View File

@@ -3,12 +3,6 @@ import { Effect, Effectable, Readable, Ref, Stream, Subscribable, SubscriptionRe
export interface SubscriptionSubRef<in out A, in out B> extends SubscriptionRef.SubscriptionRef<A> {
readonly ref: SubscriptionRef.SubscriptionRef<B>
/**
* A stream containing the current value of the `Ref` as well as all changes
* to that value.
*/
readonly changes: Stream.Stream<A>
}