Update docs

pull/1860/head
Tony 8 months ago
parent bf5a19120f
commit 975129695e
No known key found for this signature in database
GPG Key ID: 34BDD3EA27824956

@ -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 })

@ -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`

Loading…
Cancel
Save