alien-signals
Advanced tools
Comparing version 0.3.0 to 0.3.1
{ | ||
"name": "alien-signals", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "packageManager": "pnpm@9.12.0", |
@@ -13,3 +13,3 @@ <p align="center"> | ||
The goal of `alien-signals` is to create a push-pull model based aignal library with the lowest overhead. | ||
The goal of `alien-signals` is to create a push-pull model based signal library with the lowest overhead. | ||
@@ -16,0 +16,0 @@ We have set the following scheduling logic constraints: |
@@ -45,7 +45,7 @@ export interface IEffect extends Subscriber { | ||
export declare function drainQueuedEffects(): void; | ||
export declare function link(dep: Dependency, sub: Subscriber): void; | ||
export declare function link(dep: Dependency, sub: Subscriber, trackId: number): void; | ||
export declare function propagate(subs: Link): void; | ||
export declare function checkDirty(deps: Link): boolean; | ||
export declare function startTrack(sub: Subscriber): Subscriber | undefined; | ||
export declare function endTrack(sub: Subscriber, prevSub: Subscriber | undefined): void; | ||
export declare function startTrack(sub: Subscriber): number; | ||
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
49512
1620