8 lines
212 B
TypeScript
8 lines
212 B
TypeScript
const authScope: string[] = [
|
|
'https://www.googleapis.com/auth/calendar',
|
|
'https://www.googleapis.com/auth/userinfo.email',
|
|
'https://www.googleapis.com/auth/userinfo.profile',
|
|
];
|
|
|
|
export default authScope;
|