10 lines
180 B
TypeScript
10 lines
180 B
TypeScript
export type BufferedBusyTime = {
|
|
start: string;
|
|
end: string;
|
|
};
|
|
|
|
export type O365AuthCredentials = {
|
|
expiry_date: number;
|
|
access_token: string;
|
|
refresh_token: string;
|
|
};
|