add/delete entry in google calendar

This commit is contained in:
Thomas Ruoff
2022-02-19 01:10:13 +01:00
committed by Thomas Ruoff
parent 673c2e2d00
commit 33c5a91e68
3 changed files with 98 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import { clearBookingData, loadBookingData } from '../helpers/storage'
import { createBooking } from '../helpers/booking'
import { Booking } from '../db/booking'
export type BookFormData = Omit<Booking, 'uuid'> & {
export type BookFormData = Omit<Booking, 'uuid' | 'calendarEventId'> & {
storeData?: boolean
}