10 lines
317 B
TypeScript
10 lines
317 B
TypeScript
const authScope: string[] = [
|
|
'https://www.googleapis.com/auth/youtube',
|
|
'https://www.googleapis.com/auth/youtube.readonly',
|
|
'https://www.googleapis.com/auth/youtube.upload',
|
|
'https://www.googleapis.com/auth/userinfo.email',
|
|
'https://www.googleapis.com/auth/userinfo.profile',
|
|
];
|
|
|
|
export default authScope;
|