tauri_plugin_valtio/valtio.rs
1// This file was autogenerated and should not be edited manually.
2// Check the `codegen` command in the `tauri-store-cli` crate.
3
4use std::sync::Arc;
5use tauri::Runtime;
6use tauri_store::{Collection, StoreCollection};
7
8/// The Valtio plugin.
9#[derive(Collection)]
10pub struct Valtio<R: Runtime>(pub(crate) Arc<StoreCollection<R>>);