谷歌登录

This commit is contained in:
李志鹏
2025-11-05 14:00:36 +08:00
parent f3089989ff
commit 19734e96b1
3 changed files with 28 additions and 18 deletions

7
env.d.ts vendored
View File

@@ -19,6 +19,13 @@ interface GoogleAccounts {
logo_alignment?: 'left' | 'center'
}) => void
}
oauth2: {
initTokenClient: (config: {
client_id: string
callback: (response: { access_token: string }) => void
scope?: string
}) => void
}
}
}