Interface: IComputedValueOptions<T>
Defined in: mobx:
See
https://mobx.js.org/README.html
Type Parameters
| Type Parameter |
|---|
T |
Properties
context?
ts
optional context?: any;Defined in: mobx:
equals?
ts
optional equals?: IEqualsComparer<T>;Defined in: mobx:
get?
ts
optional get?: () => T;Defined in: mobx:
Returns
T
keepAlive?
ts
optional keepAlive?: boolean;Defined in: mobx:
name?
ts
optional name?: string;Defined in: mobx:
requiresReaction?
ts
optional requiresReaction?: boolean;Defined in: mobx:
set?
ts
optional set?: (value: T) => void;Defined in: mobx:
Parameters
| Parameter | Type |
|---|---|
value | T |
Returns
void