mirror of
https://github.com/vercel/commerce.git
synced 2025-06-19 05:31:22 +00:00
18 lines
258 B
TypeScript
18 lines
258 B
TypeScript
interface ProductPath {
|
|
node: {
|
|
path: string
|
|
}
|
|
}
|
|
|
|
interface GetAllProductPaths {
|
|
products: ProductPath[]
|
|
}
|
|
|
|
const getAllProductPaths = async (): Promise<GetAllProductPaths> => {
|
|
return {
|
|
products: [],
|
|
}
|
|
}
|
|
|
|
export default getAllProductPaths
|