Replace entire repo content with correct code from /root/shahikitchen-website/
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import type { OrderLine } from '../shared/order-line';
|
||||
|
||||
export type BranchLocation = 'askim' | 'backaplan' | '';
|
||||
|
||||
export interface BookingDetails {
|
||||
location: BranchLocation;
|
||||
date: string;
|
||||
time: string;
|
||||
guests: string;
|
||||
name: string;
|
||||
phone: string;
|
||||
email: string;
|
||||
notes: string;
|
||||
}
|
||||
|
||||
export type PreOrderLine = OrderLine;
|
||||
|
||||
export interface BookingInquiry {
|
||||
booking: BookingDetails;
|
||||
preOrder: PreOrderLine[];
|
||||
}
|
||||
Reference in New Issue
Block a user