Skip to content

Commit b8c9e6d

Browse files
committed
Fixing typo
1 parent c20bb3f commit b8c9e6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/auth/src/api/authentication/exchange_token.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ export interface ExchangeTokenRequest {
2626
token: string;
2727
}
2828

29-
export interface ExchangeTokenRespose {
29+
export interface ExchangeTokenResponse {
3030
accessToken: string;
3131
expiresIn?: string;
3232
}
3333

3434
export async function exchangeToken(
3535
auth: Auth,
3636
request: ExchangeTokenRequest
37-
): Promise<ExchangeTokenRespose> {
38-
return _performRegionalApiRequest<ExchangeTokenRequest, ExchangeTokenRespose>(
37+
): Promise<ExchangeTokenResponse> {
38+
return _performRegionalApiRequest<ExchangeTokenRequest, ExchangeTokenResponse>(
3939
auth,
4040
HttpMethod.POST,
4141
RegionalEndpoint.EXCHANGE_TOKEN,

0 commit comments

Comments
 (0)