2021-06-10 10:51:42 -03:00

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
}