further typing improvements

This commit is contained in:
Thomas Ruoff
2020-08-28 23:20:18 +02:00
committed by Thomas Ruoff
parent 90ac05a907
commit 52a68e9989
17 changed files with 94 additions and 71 deletions

View File

@@ -1,12 +1,16 @@
import { createBooking } from '../../../db/index'
import { Error } from 'mongoose'
import { NextApiRequest, NextApiResponse } from 'next'
import { Booking } from '../../../db/booking'
import { createBooking } from '../../../db/index'
import { sendReceivedBookingMail } from '../../../helpers/mail'
export default async function userHandler(req, res) {
export default async function userHandler(
req: NextApiRequest,
res: NextApiResponse
) {
const { method } = req
let booking
let booking: Booking
switch (method) {
case 'POST':