alien-signals
Advanced tools
Comparing version 0.4.0 to 0.4.1
{ | ||
"name": "alien-signals", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "packageManager": "pnpm@9.12.0", |
@@ -34,2 +34,8 @@ <p align="center"> | ||
## Adoptions | ||
- Used in Vue language tools (https://github.com/vuejs/language-tools) for virtual code generation. | ||
- The core reactivity system code was ported to Vue 3.6 and later. (https://github.com/vuejs/core/pull/12349) | ||
## Usage | ||
@@ -36,0 +42,0 @@ |
@@ -33,7 +33,7 @@ export interface IEffect extends Subscriber { | ||
ToCheckDirty = 8, | ||
Dirty = 16 | ||
Dirty = 16, | ||
Dirtys = 24 | ||
} | ||
export declare function startBatch(): void; | ||
export declare function endBatch(): void; | ||
export declare function drainQueuedEffects(): void; | ||
export declare function link(dep: Dependency, sub: Subscriber): Link; | ||
@@ -44,2 +44,1 @@ export declare function propagate(subs: Link): void; | ||
export declare function endTrack(sub: Subscriber): void; | ||
export declare function clearTrack(link: Link): void; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
90
46943
1555