// This file was autogenerated and should not be edited manually.
// Check the `codegen` command in the `tauri-store-cli` crate.
usecrate::valtio::Valtio;usetauri::{AppHandle, Manager, Runtime, State, WebviewWindow, Window};/// Extension for the [`Manager`](tauri::Manager) trait providing access to the Valtio plugin.
pubtraitManagerExt<R: Runtime>: Manager<R> {/// Returns a handle to the Valtio plugin.
////// # Panics
////// Panics if the internal [store collection](tauri_store::StoreCollection) is not in the [resources table](tauri::ResourceTable).
////// This likely indicates that the method was called before the plugin was properly initialized.
fnvaltio(&self)->State<Valtio<R>>{self.state::<Valtio<R>>()}}impl<R: Runtime>ManagerExt<R>forAppHandle<R>{}impl<R: Runtime>ManagerExt<R>forWebviewWindow<R>{}impl<R: Runtime>ManagerExt<R>forWindow<R>{}