@snapp-store/snapp-box-sdk
Version:
A javascript sdk for snapp box api
13 lines (12 loc) • 468 B
TypeScript
import type { DropOffDetail } from './DropOffDetail';
import type { ItemDetail } from './ItemDetail';
import type { OrderDetails } from './OrderDetails';
import type { PickUpDetail } from './PickUpDetail';
import type { TimeSlotDTO } from './TimeSlotDTO';
export declare type Data = {
timeSlotDTO: TimeSlotDTO;
itemDetails: Array<ItemDetail>;
orderDetails: OrderDetails;
pickUpDetails: Array<PickUpDetail>;
dropOffDetails: Array<DropOffDetail>;
};