Merge pull request #17325 from cedvdb/master

Update @types/auth0-js index.d.ts  connection added to AuthorizeOption and every field of AuthorizeOption is now optional
This commit is contained in:
Nathan Shively-Sanders
2017-06-20 15:10:27 -07:00
committed by GitHub
+3 -2
View File
@@ -650,8 +650,9 @@ interface RenewAuthOptions {
interface AuthorizeOptions {
domain?: string;
clientID?: string;
redirectUri: string;
responseType: string;
connection?:string;
redirectUri?: string;
responseType?: string;
responseMode?: string;
state?: string;
nonce?: string;