Update docs

This commit is contained in:
Tony
2024-10-17 11:58:40 +08:00
parent bf5a19120f
commit 975129695e
2 changed files with 5 additions and 14 deletions
+2 -2
View File
@@ -68,9 +68,9 @@ fn main() {
Afterwards all the plugin's APIs are available through the JavaScript guest bindings:
```typescript
import { createStore } from '@tauri-apps/plugin-store'
import { Store } from '@tauri-apps/plugin-store'
const store = await createStore('settings.json')
const store = await Store.load('settings.json')
await store.set('some-key', { value: 5 })
+3 -12
View File
@@ -65,10 +65,7 @@ export async function create(
* @example
* ```typescript
* import { Store } from '@tauri-apps/api/store';
* let store = await Store.get('store.json');
* if (!store) {
* store = await Store.load('store.json');
* }
* const store = await Store.load('store.json');
* ```
*
* @param path Path to save the store in `app_data_dir`
@@ -93,10 +90,7 @@ export async function load(
* @example
* ```typescript
* import { getStore } from '@tauri-apps/api/store';
* let store = await getStore('store.json');
* if (!store) {
* store = await Store.load('store.json');
* }
* const store = await getStore('store.json');
* ```
*
* @param path Path of the store.
@@ -245,10 +239,7 @@ export class Store extends Resource implements IStore {
* @example
* ```typescript
* import { Store } from '@tauri-apps/api/store';
* let store = await Store.get('store.json');
* if (!store) {
* store = await Store.load('store.json');
* }
* const store = await Store.load('store.json');
* ```
*
* @param path Path to save the store in `app_data_dir`