UNPKG

@daveyplate/better-auth-tanstack

Version:

Tanstack hooks for better-auth

18 lines (15 loc) 591 B
import { useContext } from "react" import { AuthQueryContext, type AuthQueryOptions } from "../../lib/auth-query-provider" import type { AuthClient } from "../../types/auth-client" import { useAuthMutation } from "../shared/use-auth-mutation" export function useRevokeDeviceSession<TAuthClient extends AuthClient>( authClient: TAuthClient, options?: Partial<AuthQueryOptions> ) { const { listDeviceSessionsKey: queryKey } = useContext(AuthQueryContext) return useAuthMutation({ queryKey, mutationFn: authClient.multiSession.revoke, options }) }