@solidjs/signals 0.4.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,16 +20,18 @@ export declare class Effect<T = any> extends Computation<T> {
20
20
  _notify(state: number, skipQueue?: boolean): void;
21
21
  _setError(error: unknown): void;
22
22
  _disposeNode(): void;
23
- _runEffect(type: number): void;
23
+ _run(type: number): void;
24
24
  }
25
25
  export declare class EagerComputation<T = any> extends Computation<T> {
26
26
  constructor(initialValue: T, compute: () => T, options?: SignalOptions<T> & {
27
27
  defer?: boolean;
28
28
  });
29
29
  _notify(state: number, skipQueue?: boolean): void;
30
+ _run(): void;
30
31
  }
31
32
  export declare class FirewallComputation extends Computation {
32
33
  firewall: boolean;
33
34
  constructor(compute: () => void);
34
35
  _notify(state: number, skipQueue?: boolean): void;
36
+ _run(): void;
35
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidjs/signals",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "",
5
5
  "author": "Ryan Carniato",
6
6
  "license": "MIT",