Missed a return type on the OAuth2 client interface

This commit is contained in:
Bjørn 2017-10-06 20:25:33 +02:00
parent 836f9bdb36
commit 11307ac0a6

View File

@ -881,7 +881,7 @@ declare module "grpc" {
* The definition is copied from `ts/lib/auth/oauth2client.ts`
*/
export interface GoogleOAuth2Client {
getRequestMetadata(optUri: string, metadataCallback: (err: Error, headers: any) => void)
getRequestMetadata(optUri: string, metadataCallback: (err: Error, headers: any) => void): void;
}
/**