mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 15:36:58 +00:00
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import { Product } from '@commerce/types/product'
|
|
|
|
export default function getProductOperation() {
|
|
async function getProduct(): Promise<Product | {} | any> {
|
|
return {}
|
|
}
|
|
return getProduct
|
|
}
|