Abstract
Readonly
$An Observable
of the state of this store object.
Protected
activeProtected
Optional
lastProtected
subscribersProtected
activateAssigns the given values to state of this store object. The resulting state will be like Object.assign(store.state(), value)
.
Protected
deactivateAbstract
deleteProtected
isProtected
Abstract
maybeProtected
Abstract
maybeProtected
maybeRuns func
on a shallow clone of the state, replacing the state with the clone. The first argument to func
will be the cloned state, followed by the arguments in args
.
WARNING: You SHOULD NOT use a function that will mutate nested objects within the state.
Rest
...args: AAbstract
refersAbstract
setReplace the state represented by this store object with the given value.
Runs func
on the state and replaces it with the return value. The first argument to func
will be the state, followed by the arguments in args
.
WARNING: You SHOULD NOT use a function that will mutate the state.
Abstract
stateProtected
update
Select a slice of the store to operate on. For example
store('currentUser')
will return a newStore
that represents thecurrentUser
property.