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