import { Store } from "tauri-plugin-store-api"; const store = new Store(".settings.dat"); await store.set("some-key", { value: 5 }); const val = await store.get("some-key"); assert(val, { value: 5 }); await store.save(); // this manually saves the store, otherwise the...