From f74dfd5ad8fb21ecc3349ad745ebf497da65ec91 Mon Sep 17 00:00:00 2001 From: Brennan Date: Thu, 6 Jun 2019 14:26:34 -0400 Subject: [PATCH] Add request option 'accessType' to strategy options (#35930) --- types/passport-google-oauth20/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/passport-google-oauth20/index.d.ts b/types/passport-google-oauth20/index.d.ts index f6e09454da..478a14b2e0 100644 --- a/types/passport-google-oauth20/index.d.ts +++ b/types/passport-google-oauth20/index.d.ts @@ -16,6 +16,7 @@ export type OAuth2StrategyOptionsWithoutRequiredURLs = Pick< >; export interface _StrategyOptionsBase extends OAuth2StrategyOptionsWithoutRequiredURLs { + accessType?: 'offline' | 'online'; authorizationURL?: string; callbackURL?: string; clientID: string;