From d351c3f9dc1af4c20d53364eb07ad929b206d735 Mon Sep 17 00:00:00 2001 From: Joachim Viide Date: Fri, 16 Sep 2022 21:06:18 +0000 Subject: [PATCH] Remove workaround --- packages/core/src/index.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index cd5089a0a..ebc7647f2 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -634,13 +634,11 @@ function effect(compute: () => void): () => void { return effect._dispose.bind(effect); } -// Work around problems with the test runner not finding the exported Signal class object. -const _Signal = Signal; export { signal, computed, effect, batch, - _Signal as Signal, + Signal, type Computed as ReadonlySignal };