1
0
mirror of https://github.com/vercel/commerce.git synced 2025-09-18 22:00:17 +00:00
Files
.vscode
assets
components
config
docs
framework
bigcommerce
api
catalog
definitions
endpoints
cart
customer
login
logout
signup
index.ts
signup.ts
fragments
operations
utils
wishlist
checkout.ts
index.ts
auth
cart
common
customer
lib
product
scripts
types
wishlist
.env.template
README.md
commerce.config.json
fetcher.ts
index.tsx
next.config.js
provider.ts
schema.d.ts
schema.graphql
commerce
shopify
lib
pages
public
.editorconfig
.env.template
.gitignore
.prettierignore
.prettierrc
README.md
codegen.json
commerce.config.json
global.d.ts
license.md
next-env.d.ts
next.config.js
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
commerce/framework/bigcommerce/api/endpoints/signup/index.ts
2021-05-20 14:03:52 -05:00

11 lines
340 B
TypeScript

import type { GetAPISchema } from '@commerce/api'
import type { SignupSchema } from '../../../types/signup'
import type { BigcommerceAPI } from '../..'
import signup from './signup'
export type SignupAPI = GetAPISchema<BigcommerceAPI, SignupSchema>
export type SignupEndpoint = SignupAPI['endpoint']
export const operations = { signup }