tauri_plugin_svelte/
svelte.rs

1// THIS FILE WAS AUTOGENERATED AND SHOULD NOT BE EDITED MANUALLY.
2//
3// Check the `codegen` command in the `tauri-store-cli` crate.
4// https://github.com/ferreira-tb/tauri-store/tree/main/crates/tauri-store-cli
5
6use tauri::{Runtime, State};
7use tauri_store::{Collection, CollectionMarker, StoreCollection};
8
9/// The Svelte plugin.
10#[derive(Collection)]
11pub struct Svelte<'a, R: Runtime>(pub(crate) State<'a, StoreCollection<R, SvelteMarker>>);
12
13/// Marker for the Svelte plugin.
14pub struct SvelteMarker;
15
16impl CollectionMarker for SvelteMarker {}