Update index.d.ts

added connection to authorizeOptions, and made every field of AuthorizeOption optional
This commit is contained in:
cedvdb 2017-06-20 15:47:27 +02:00 committed by GitHub
parent 2d42456f08
commit 76eca1eb80

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;