@lwc/engine-core 6.1.1 → 6.2.0

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.
@@ -15,4 +15,5 @@ export declare class ReactiveObserver {
15
15
  reset(): void;
16
16
  notify(): void;
17
17
  link(reactiveObservers: ReactiveObserver[]): void;
18
+ isObserving(): boolean;
18
19
  }
@@ -0,0 +1,5 @@
1
+ import { Signal } from '@lwc/signals';
2
+ export declare function subscribeToSignal(target: object, signal: Signal<unknown>, update: CallbackFunction): void;
3
+ export declare function unsubscribeFromSignals(target: object): void;
4
+ type CallbackFunction = () => void;
5
+ export {};
@@ -7,7 +7,7 @@ interface MaybeModule {
7
7
  * doesn't resolve properly circular dependencies between modules. In order to circumvent this
8
8
  * issue, the module loader returns a factory with a symbol attached to it.
9
9
  */
10
- interface CircularModuleDependency<M extends Object> {
10
+ interface CircularModuleDependency<M extends object> {
11
11
  (): M;
12
12
  __circular__: boolean;
13
13
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
5
5
  ],
6
6
  "name": "@lwc/engine-core",
7
- "version": "6.1.1",
7
+ "version": "6.2.0",
8
8
  "description": "Core LWC engine APIs.",
9
9
  "keywords": [
10
10
  "lwc"
@@ -42,10 +42,11 @@
42
42
  }
43
43
  },
44
44
  "dependencies": {
45
- "@lwc/features": "6.1.1",
46
- "@lwc/shared": "6.1.1"
45
+ "@lwc/features": "6.2.0",
46
+ "@lwc/shared": "6.2.0"
47
47
  },
48
48
  "devDependencies": {
49
- "observable-membrane": "2.0.0"
49
+ "observable-membrane": "2.0.0",
50
+ "@lwc/signals": "6.2.0"
50
51
  }
51
52
  }