Skip to content

Commit 38be8c6

Browse files
committed
return type for updateToken
1 parent c721028 commit 38be8c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OAuth2User.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export class OAuth2User implements AuthClient {
128128
/**
129129
* Update token information
130130
*/
131-
updateToken(data: Record<string, any>) {
131+
updateToken(data: Record<string, any>): void {
132132
this.refresh_token = data.refresh_token;
133133
this.#access_token = data.access_token;
134134
this.token_type = data.token_type;

0 commit comments

Comments
 (0)