You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 14, 2024. It is now read-only.
> 👀 .read and .write return Rust like [Result](https://doc.rust-lang.org/std/result/) object. Under the hood we use [ts-results](https://github.com/vultix/ts-results) to achieve this.
By default, the memory API overwrites the previous stored payload. When the `OVERWRITE` option is `false`, it merges new properties with existing properties.
156
+
157
+
```ts
158
+
exportinterfaceIMemoizeOptions {
159
+
/** * @defaulttrue*/
160
+
overwrite?:boolean;
161
+
}
162
+
```
163
+
The `overwrite` option is used to specify whether data should be overwritten or merged.
0 commit comments