Skip to content

Commit

Permalink
Merge pull request #91 from reslear/patch-2
Browse files Browse the repository at this point in the history
fix: correct type def `tokenResponse`
  • Loading branch information
kasvith authored Oct 30, 2024
2 parents 79dda35 + ded7382 commit abd23d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/@types/globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ declare global {
};
initCodeClient: (config: CodeClientConfig) => CodeClient;
hasGrantedAnyScope: (
tokenRsponse: TokenResponse,
tokenResponse: TokenResponse,
firstScope: string,
...restScopes: string[]
) => boolean;
hasGrantedAllScopes: (
tokenRsponse: TokenResponse,
tokenResponse: TokenResponse,
firstScope: string,
...restScopes: string[]
) => boolean;
Expand Down

0 comments on commit abd23d7

Please sign in to comment.