We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c529496 commit 2ffc177Copy full SHA for 2ffc177
src/auth/index.ts
@@ -1292,9 +1292,11 @@ export namespace auth {
1292
/**
1293
* The interface representing OIDC provider's response object for OAuth
1294
* 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.
+ * One of the following settings is required:
+ * <ul>
+ * <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>
1300
*/
1301
export interface OAuthResponseType {
1302
0 commit comments