We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
apps/meteor/app/lib/server/oauth/google.ts
1 parent 0f419ee commit e246502Copy full SHA for e246502
apps/meteor/definition/externals/meteor/google-oauth.d.ts
@@ -1,3 +1,14 @@
1
declare module 'meteor/google-oauth' {
2
- export const Google: any;
+ export const Google: {
3
+ readonly name: string;
4
+ readonly whitelistedFields: string[];
5
+ requestCredential(
6
+ options: Meteor.LoginWithExternalServiceOptions | undefined,
7
+ credentialRequestCompleteCallback: (credentialTokenOrError?: string | Error) => void,
8
+ ): void;
9
+ signIn?(
10
11
+ callback?: (error: LoginError | undefined, result?: unknown) => void,
12
13
+ };
14
}
0 commit comments