mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
[auth0-js] Add login_hint value in AuthorizeOptions (#29479)
* [auth0-js] Add login_hint value in AuthorizeOptions * Update Test
This commit is contained in:
committed by
Wesley Wigham
parent
f7a621d90d
commit
6524388fde
@@ -11,6 +11,7 @@ webAuth.authorize({
|
||||
responseType: 'token',
|
||||
redirectUri: 'https://example.com/auth/callback',
|
||||
language: 'en',
|
||||
login_hint: "email@email.com",
|
||||
prompt: 'login',
|
||||
});
|
||||
|
||||
|
||||
1
types/auth0-js/index.d.ts
vendored
1
types/auth0-js/index.d.ts
vendored
@@ -761,6 +761,7 @@ export interface AuthorizeOptions {
|
||||
scope?: string;
|
||||
audience?: string;
|
||||
language?: string;
|
||||
login_hint?: string;
|
||||
prompt?: string;
|
||||
mode?: "login" | "signUp";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user