@tauri-store/valtio - v2.7.1
    Preparing search index...

    Interface Store<S>

    Wrapper for the Valtio proxy state.

    interface Store<S extends State> {
        id: string;
        state: S;
        start(): Promise<void>;
        stop(): Promise<void>;
    }

    Type Parameters

    Hierarchy

    • BaseStore<S>
      • Store
    Index

    Properties

    Methods

    Properties

    id: string
    state: S

    Methods

    • Starts the store synchronization.

      Returns Promise<void>

    • Stops the store synchronization.

      Returns Promise<void>