delivery_system/src/types/index.ts

21 lines
344 B
TypeScript

export interface Address {
street: string;
line1: string;
line2: string;
country: string;
postcode: string;
code: string;
}
export interface AvailableTimeslots {
id: string;
start_time: string;
end_time: string;
}
export interface Orders {
_id: string;
userId: string;
slotId: string;
deliveryCreatedDate: string;
}