cal.pub0.org/apps/web/lib/integrations/calendar/interfaces/Office365Calendar.ts

11 lines
180 B
TypeScript

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