0.1.4 #5

Merged
Thilawyn merged 67 commits from next into master 2025-10-02 18:18:23 +02:00
Showing only changes of commit 8b5074bd56 - Show all commits

View File

@@ -53,6 +53,7 @@ extends Pipeable.Class() implements Form<A, I, R> {
constructor(
readonly schema: Schema.Schema<A, I, R>,
readonly latestValueRef: SubscriptionRef.SubscriptionRef<A>,
readonly latestCandidateRef: SubscriptionRef.SubscriptionRef<I>,
readonly errorRef: SubscriptionRef.SubscriptionRef<Option.Option<ParseResult.ParseError>>,
) {
super()
@@ -150,6 +151,6 @@ export const make: {
export namespace make {
export interface Options<in out A, in out I = A, out R = never> {
readonly schema: Schema.Schema<A, I, R>
readonly initialValue: NoInfer<A>
readonly initialEncodedValue: NoInfer<I>
}
}