From d94193bbaec88700704b4df4d765d8c47e64aaed Mon Sep 17 00:00:00 2001 From: Jacob Windsor Date: Tue, 29 Nov 2016 23:05:36 +0100 Subject: [PATCH] Add to Auth0LoginOptions instead Since the responseType is also needed in the login method options --- auth0-js/auth0-js.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth0-js/auth0-js.d.ts b/auth0-js/auth0-js.d.ts index ab76c4afa4..1d7fa54d63 100644 --- a/auth0-js/auth0-js.d.ts +++ b/auth0-js/auth0-js.d.ts @@ -96,6 +96,7 @@ interface Auth0PopupOptions { interface Auth0LoginOptions { auto_login?: boolean; + responseType?: string; connection?: string; email?: string; username?: string; @@ -106,7 +107,6 @@ interface Auth0LoginOptions { interface Auth0SignupOptions extends Auth0LoginOptions { auto_login: boolean; - responseType: string; } interface Auth0Error {