Add request option 'accessType' to strategy options (#35930)

This commit is contained in:
Brennan 2019-06-06 14:26:34 -04:00 committed by Andrew Casey
parent c474cdf5d7
commit f74dfd5ad8

View File

@ -16,6 +16,7 @@ export type OAuth2StrategyOptionsWithoutRequiredURLs = Pick<
>;
export interface _StrategyOptionsBase extends OAuth2StrategyOptionsWithoutRequiredURLs {
accessType?: 'offline' | 'online';
authorizationURL?: string;
callbackURL?: string;
clientID: string;