quorum
    Preparing search index...

    Function setAuthStoreValues

    • Sets the authentication information in the Tauri store.

      Parameters

      • accessToken: string

        The access token to store.

      • refreshToken: string

        The refresh token to store.

      • userId: string

        The user ID to store.

      • username: string

        The username to store.

      Returns Promise<void>

      Promise - Resolves when the values are successfully stored.

      If the store operation fails (e.g., I/O error).

      await setAuthStoreValues('accessToken123', 'refreshToken456','userId789', 'usernameExample');