Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RADFish application users can be out at sea for an extended period of time and m

## Storage Models

The `@nmfs-radfish/radfish`package provides two storage methods available `LocalStorageMethod` and `IndexedDBStorageMethod`.
The `@nmfs-radfish/radfish`package provides two storage methods available `LocalStorageMethod` and `IndexedDBMethod`.

### LocalStorage

Expand All @@ -29,9 +29,9 @@ new LocalStorageMethod(
When using IndexedDB, we additionally need to provide a schema version and model structures. These are used to manage future data migrations.

```js
import { IndexedDBStorageMethod } from '@nmfs-radfish/radfish';
import { IndexedDBMethod } from '@nmfs-radfish/radfish';

new IndexedDBStorageMethod(
new IndexedDBMethod(
"survey-app-storage",
"1.0.0",
{
Expand Down