calcom/apps/web/lib/integrations/calendar/interfaces/Office365Calendar.ts
2022-02-10 14:22:45 -07:00

10 lines
180 B
TypeScript

export type BufferedBusyTime = {
start: string;
end: string;
};
export type O365AuthCredentials = {
expiry_date: number;
access_token: string;
refresh_token: string;
};