Skip to content

Commit 2ffc177

Browse files
Update OIDC reference docs (#1305)
1 parent c529496 commit 2ffc177

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/auth/index.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1292,9 +1292,11 @@ export namespace auth {
12921292
/**
12931293
* The interface representing OIDC provider's response object for OAuth
12941294
* authorization flow.
1295-
* We need either of them to be true, there are two cases:
1296-
* If set code to true, then we are doing code flow.
1297-
* If set idToken to true, then we are doing idToken flow.
1295+
* One of the following settings is required:
1296+
* <ul>
1297+
* <li>Set <code>code</code> to <code>true</code> for the code flow.</li>
1298+
* <li>Set <code>idToken</code> to <code>true</code> for the ID token flow.</li>
1299+
* </ul>
12981300
*/
12991301
export interface OAuthResponseType {
13001302
/**

0 commit comments

Comments
 (0)