mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 23:16:59 +00:00
12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
import type { Product } from '@commerce/types/product'
|
|
|
|
export default function getProductOperation() {
|
|
async function getProduct(): Promise<Product | {} | any> {
|
|
return {
|
|
product: [],
|
|
}
|
|
}
|
|
|
|
return getProduct
|
|
}
|