2021-05-20 21:05:56 -05:00

11 lines
338 B
TypeScript

import type { GetAPISchema } from '@commerce/api'
import type { LogoutSchema } from '../../../types/logout'
import type { BigcommerceAPI } from '../..'
import logout from './logout'
export type LogoutAPI = GetAPISchema<BigcommerceAPI, LogoutSchema>
export type LogoutEndpoint = LogoutAPI['endpoint']
export const handlers = { logout }