HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/design.system/node_modules/alien-signals/cjs/system.d.ts
export interface IEffect extends Subscriber {
    nextNotify: IEffect | undefined;
    notify(): void;
}
export interface IComputed extends Dependency, Subscriber {
    update(): boolean;
}
export interface Dependency {
    subs: Link | undefined;
    subsTail: Link | undefined;
}
export interface Subscriber {
    trackId: number;
    canPropagate: boolean;
    dirtyLevel: DirtyLevels;
    deps: Link | undefined;
    depsTail: Link | undefined;
}
export interface Link {
    dep: Dependency | IComputed | (Dependency & IEffect);
    sub: Subscriber | IComputed | IEffect;
    trackId: number;
    prevSub: Link | undefined;
    nextSub: Link | undefined;
    nextDep: Link | undefined;
}
export declare const enum DirtyLevels {
    None = 0,
    SideEffectsOnly = 1,
    MaybeDirty = 2,
    Dirty = 3
}
export declare namespace System {
    let activeSub: Subscriber | undefined;
    let activeTrackId: number;
    let batchDepth: number;
    let lastTrackId: number;
    let queuedEffects: IEffect | undefined;
    let queuedEffectsTail: IEffect | undefined;
}
export declare function startBatch(): void;
export declare function endBatch(): void;
export declare namespace Link {
    function get(dep: Dependency, sub: Subscriber, nextDep: Link | undefined): Link;
    function release(link: Link): void;
}
export declare namespace Dependency {
    function link(dep: Dependency, sub: Subscriber): void;
    function propagate(subs: Link): void;
}
export declare namespace Subscriber {
    function checkDirty(link: Link, depth?: number): boolean;
    function startTrack(sub: Subscriber): Subscriber | undefined;
    function endTrack(sub: Subscriber, prevSub: Subscriber | undefined): void;
    function clearTrack(link: Link): void;
}