CreateComputedOptions
interface
Options passed to the computed creation function.
API
interface CreateComputedOptions<T> { equal?: ValueEqualityFn<T> | undefined; debugName?: string | undefined;}
equal
ValueEqualityFn<T> | undefinedA comparison function which defines equality for computed values.
debugName
string | undefinedA debug name for the computed signal. Used in Angular DevTools to identify the signal.
Jump to details