MCPcopy Index your code
hub / github.com/angular/angular / isWritableSignal

Function isWritableSignal

packages/core/src/render3/reactivity/api.ts:55–57  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

53 * @publicApi 21.1
54 */
55export function isWritableSignal(value: unknown): value is WritableSignal<unknown> {
56 return isSignal(value) && typeof (value as any).set === 'function';
57}

Callers 3

is_signal_spec.tsFile · 0.90
ɵɵtwoWayPropertyFunction · 0.90
ɵɵtwoWayBindingSetFunction · 0.90

Calls 1

isSignalFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…