forked from crowetic/commerce
20 lines
614 B
TypeScript
20 lines
614 B
TypeScript
import { useHook, useMutationHook } from '../utils/use-hook'
|
|
import { mutationFetcher } from '../utils/default-fetcher'
|
|
import type { HookFetcherFn, MutationHook } from '../utils/types'
|
|
import type { Provider } from '..'
|
|
|
|
export type UseLogout<
|
|
H extends MutationHook<any, any, any> = MutationHook<null>
|
|
> = ReturnType<H['useHook']>
|
|
|
|
export const fetcher: HookFetcherFn<null> = mutationFetcher
|
|
|
|
const fn = (provider: Provider) => provider.auth?.useLogout!
|
|
|
|
const useLogout: UseLogout = (...args) => {
|
|
const hook = useHook(fn)
|
|
return useMutationHook({ fetcher, ...hook })(...args)
|
|
}
|
|
|
|
export default useLogout
|