21 lines
425 B
TypeScript
21 lines
425 B
TypeScript
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[];
|
|
} |