0.1.11 #14

Merged
Thilawyn merged 318 commits from next into master 2025-05-19 14:01:41 +02:00
Showing only changes of commit 682e473bf7 - Show all commits

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> { export interface SubscriptionSubRef<in out A, in out B> extends SubscriptionRef.SubscriptionRef<A> {
readonly ref: SubscriptionRef.SubscriptionRef<B> 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>
} }