aboutsummaryrefslogtreecommitdiff
path: root/src/rx.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/rx.ts')
-rw-r--r--src/rx.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rx.ts b/src/rx.ts
index 5edd3c1..958abcb 100644
--- a/src/rx.ts
+++ b/src/rx.ts
@@ -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