import type { Basket } from './Basket'; /** * @type BasketsResult: Result document containing an array of baskets. * * @property baskets: The list of baskets for a customer. * * @property total: The total number of baskets. * */ export type BasketsResult = { baskets?: Array; total: number; } & { [key: string]: any; };