Skip to content

Commit 834fe2e

Browse files
committed
chore: format
1 parent 4c62aa1 commit 834fe2e

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

docs/interfaces/WWWAuthenticateChallenge.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ Parsed WWW-Authenticate challenge
1414

1515
`readonly` **parameters**: [`WWWAuthenticateChallengeParameters`](WWWAuthenticateChallengeParameters.md)
1616

17-
Parsed WWW-Authenticate challenge auth-param dictionary (always present but will be empty when
18-
[token68](#token68) is present)
17+
Parsed WWW-Authenticate challenge auth-param dictionary (always present but may be empty, e.g.
18+
when [token68](#token68) is present, or when no auth-param pairs
19+
were provided)
1920

2021
***
2122

src/index.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1108,8 +1108,7 @@ function handleB2Clogin(server: URL, options?: DiscoveryRequestOptions) {
11081108
}
11091109

11101110
export interface DynamicClientRegistrationRequestOptions
1111-
extends DiscoveryRequestOptions,
1112-
DPoPOptions {
1111+
extends DiscoveryRequestOptions, DPoPOptions {
11131112
/**
11141113
* Access token optionally issued by an authorization server used to authorize
11151114
* calls to the client registration endpoint.
@@ -2837,8 +2836,10 @@ export function enableDetachedSignatureResponseChecks(config: Configuration) {
28372836
)
28382837
}
28392838

2840-
export interface ImplicitAuthenticationResponseChecks
2841-
extends Pick<AuthorizationCodeGrantChecks, 'expectedState' | 'maxAge'> {}
2839+
export interface ImplicitAuthenticationResponseChecks extends Pick<
2840+
AuthorizationCodeGrantChecks,
2841+
'expectedState' | 'maxAge'
2842+
> {}
28422843

28432844
/**
28442845
* This method validates the authorization server's
@@ -4382,5 +4383,4 @@ export async function fetchProtectedResource(
43824383
*
43834384
* @deprecated Use {@link DeviceAuthorizationGrantPollOptions}.
43844385
*/
4385-
export interface DeviceAutorizationGrantPollOptions
4386-
extends DeviceAuthorizationGrantPollOptions {}
4386+
export interface DeviceAutorizationGrantPollOptions extends DeviceAuthorizationGrantPollOptions {}

0 commit comments

Comments
 (0)