From 97c858eb3695351848eac3073df8bc7e457bd8d2 Mon Sep 17 00:00:00 2001 From: Igor Belagorudsky Date: Thu, 9 Aug 2018 15:04:34 -0400 Subject: [PATCH] auth0-js: added mode to AuthorizeOptions --- types/auth0-js/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/auth0-js/index.d.ts b/types/auth0-js/index.d.ts index e66cd5f712..033a4bcbde 100644 --- a/types/auth0-js/index.d.ts +++ b/types/auth0-js/index.d.ts @@ -762,6 +762,7 @@ export interface AuthorizeOptions { audience?: string; language?: string; prompt?: string; + mode?: "login" | "signUp"; } export interface CheckSessionOptions extends AuthorizeOptions {