cal/packages/types/Event.d.ts
Alex van Andel 159c026533
As Google Meet is always installed, this fixes the doubling (#3093)
* As Google Meet is always installed, this fixes the doubling

* Make entire Google link clickable, fix extraData

* Attempt at type fixing :)

* AdditionalInformation for the booking page?

* Update packages/emails/src/components/LocationInfo.tsx

Being explicit :)

* Exclude AdditionalInformation as it is irrelevant here

Co-authored-by: Peer Richelsen <peeroke@gmail.com>
Co-authored-by: Omar López <zomars@me.com>
2022-06-17 18:34:41 +00:00

6 lines
231 B
TypeScript

import type { NewCalendarEventType, AdditionalInformation } from "@calcom/types/Calendar";
import type { VideoCallData } from "./VideoApiAdapter";
export type Event = AdditionalInformation | NewCalendarEventType | VideoCallData;