@tauri-store/vue - v1.0.0
    Preparing search index...

    Interface Store<S>

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

    Type Parameters

    Hierarchy

    • BaseStore<S>
      • Store
    Index

    Properties

    Methods

    Properties

    id: string
    state: Ref<S>

    Methods

    • Starts the store synchronization.

      Returns Promise<void>

    • Stops the store synchronization.

      Returns Promise<void>