7 lines
265 B
TypeScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
import { Computed, ISignal } from '../index.js';
export declare function equalityComputed<T>(getter: () => T): ISignal<T>;
export declare class EqualityComputed<T = any> extends Computed<T> {
constructor(getter: () => T);
equals(a: any, b: any): boolean;
}