Add to Auth0LoginOptions instead

Since the responseType is also needed in the login method options
This commit is contained in:
Jacob Windsor
2016-11-29 23:05:36 +01:00
committed by GitHub
parent d7316cb65c
commit d94193bbae
+1 -1
View File
@@ -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 {