@@ -1449,8 +1449,8 @@ export const optimisticFn: {
14491449 options : {
14501450 readonly reducer : ( current : NoInfer < A > , update : OW ) => NoInfer < W >
14511451 readonly fn :
1452- | RxResultFn < NoInfer < OW > , XA , XE >
1453- | ( ( set : ( result : NoInfer < W > ) => void ) => RxResultFn < NoInfer < OW > , XA , XE > )
1452+ | RxResultFn < OW , XA , XE >
1453+ | ( ( set : ( result : NoInfer < W > ) => void ) => RxResultFn < OW , XA , XE > )
14541454 }
14551455 ) : (
14561456 self : Writable < A , Rx < Result . Result < W , unknown > > >
@@ -1460,17 +1460,17 @@ export const optimisticFn: {
14601460 options : {
14611461 readonly reducer : ( current : NoInfer < A > , update : OW ) => NoInfer < W >
14621462 readonly fn :
1463- | RxResultFn < NoInfer < OW > , XA , XE >
1464- | ( ( set : ( result : NoInfer < W > ) => void ) => RxResultFn < NoInfer < OW > , XA , XE > )
1463+ | RxResultFn < OW , XA , XE >
1464+ | ( ( set : ( result : NoInfer < W > ) => void ) => RxResultFn < OW , XA , XE > )
14651465 }
14661466 ) : RxResultFn < OW , XA , XE >
14671467} = dual ( 2 , < A , W , XA , XE , OW = void > (
14681468 self : Writable < A , Rx < Result . Result < W , unknown > > > ,
14691469 options : {
14701470 readonly reducer : ( current : NoInfer < A > , update : OW ) => NoInfer < W >
14711471 readonly fn :
1472- | RxResultFn < NoInfer < OW > , XA , XE >
1473- | ( ( set : ( result : NoInfer < W > ) => void ) => RxResultFn < NoInfer < OW > , XA , XE > )
1472+ | RxResultFn < OW , XA , XE >
1473+ | ( ( set : ( result : NoInfer < W > ) => void ) => RxResultFn < OW , XA , XE > )
14741474 }
14751475) : RxResultFn < OW , XA , XE > => {
14761476 const transition = state < Result . Result < W , unknown > > ( Result . initial ( ) )
0 commit comments