commerce/framework/csv/product/get-all-product-paths.ts
2021-04-18 11:52:51 -03:00

18 lines
258 B
TypeScript

interface ProductPath {
node: {
path: string
}
}
interface GetAllProductPaths {
products: ProductPath[]
}
const getAllProductPaths = async (): Promise<GetAllProductPaths> => {
return {
products: [],
}
}
export default getAllProductPaths