mirror of
https://github.com/vercel/commerce.git
synced 2025-06-30 18:31:21 +00:00
11 lines
331 B
TypeScript
11 lines
331 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 operations = { login }
|