Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
*/
55
export
function
isWritableSignal(value: unknown): value is WritableSignal<unknown> {
56
return
isSignal(value) && typeof (value as any).set ===
'function'
;
57
}
Callers
3
is_signal_spec.ts
File · 0.90
ɵɵtwoWayProperty
Function · 0.90
ɵɵtwoWayBindingSet
Function · 0.90
Calls
1
isSignal
Function · 0.70
Tested by
no test coverage detected