• Overview
@angular/core

WritableResource

interface

A Resource with a mutable value.

  
    interface WritableResource<T> extends Resource<T> {}
  
  

value

WritableSignal<T | undefined>

hasValue

boolean
@returnsboolean

set

void

Convenience wrapper for value.set.

@paramvalueT | undefined
@returnsvoid

update

void

Convenience wrapper for value.update.

@paramupdater(value: T | undefined) => T | undefined
@returnsvoid

asReadonly

@returnsResource<T>

The current status of the Resource, which describes what the resource is currently doing and what can be expected of its value.

error

Signal<unknown>

When in the error state, this returns the last known error from the Resource.

isLoading

Signal<boolean>

Whether this resource is loading a new value (or reloading the existing one).

reload

boolean

Instructs the resource to re-load any asynchronous dependency it may have.

Note that the resource will not enter its reloading state until the actual backend request is made.

@returnsboolean
Jump to details