From 76eca1eb80840e78407c60fed5944c2e7b20f5e1 Mon Sep 17 00:00:00 2001 From: cedvdb Date: Tue, 20 Jun 2017 15:47:27 +0200 Subject: [PATCH] Update index.d.ts added connection to authorizeOptions, and made every field of AuthorizeOption optional --- types/auth0-js/index.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/types/auth0-js/index.d.ts b/types/auth0-js/index.d.ts index e44092a9c8..4e6afded1d 100644 --- a/types/auth0-js/index.d.ts +++ b/types/auth0-js/index.d.ts @@ -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;