Type Alias CheckoutInit

CheckoutInit: {
    payload: {
        cart: { currency: string; items: CartItem[] };
        passengers?: CheckoutPassenger[];
    };
}

Type declaration