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

11 lines
329 B
TypeScript

import type { GetAPISchema } from '@commerce/api'
import type { LoginSchema } from '../../../types/login'
import type { BigcommerceAPI } from '../..'
import login from './login'
export type LoginAPI = GetAPISchema<BigcommerceAPI, LoginSchema>
export type LoginEndpoint = LoginAPI['endpoint']
export const handlers = { login }