mirror of
https://github.com/vercel/commerce.git
synced 2025-05-20 16:36:59 +00:00
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
import type { CustomerCardEndpoint } from '.'
|
|
|
|
const updateItem: CustomerCardEndpoint['handlers']['updateItem'] = async ({
|
|
res,
|
|
}) => {
|
|
return res.status(200).json({ data: null, errors: [] })
|
|
}
|
|
|
|
export default updateItem
|