mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-29 12:06:01 +02:00
Update docs
This commit is contained in:
@@ -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`
|
||||
|
||||
Reference in New Issue
Block a user