@reffuse/extension-query 0.1.5 #16

Merged
Thilawyn merged 347 commits from next into master 2025-06-01 05:28:47 +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>
} }