diff options
author | Joris Guyonvarch | 2025-08-31 14:22:41 +0200 |
---|---|---|
committer | Joris Guyonvarch | 2025-08-31 14:22:41 +0200 |
commit | 85cfbf6da3e19639de9d7812edfb33463e50d709 (patch) | |
tree | ae01689c320e19f76d3e5a3c0011edfa48e8fb61 | |
parent | a643955d1d248441e4ce9939dcfcc629e0a20dee (diff) |
Export Var
-rw-r--r-- | src/rx.ts | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -266,7 +266,7 @@ export function pure<A>(value: A): Rx<A> { return new Pure(value) } -class Var<A> extends Rx<A> { +export class Var<A> extends Rx<A> { readonly type: 'Var' readonly id: string readonly update: (f: (value: A) => A) => void |