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

18 lines
282 B
TypeScript

interface CollectionEdge {
entityId: string
name: string
path: string
}
interface GetAllCollections {
categories: CollectionEdge[]
}
const getAllCollections = async (): Promise<GetAllCollections> => {
return {
categories: [],
}
}
export default getAllCollections