Skip to content

Commit

Permalink
fix: correct type def tokenResponse
Browse files Browse the repository at this point in the history
Signed-off-by: reslear <[email protected]>
  • Loading branch information
reslear authored Oct 1, 2024
1 parent 79dda35 commit ded7382
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 ded7382

Please sign in to comment.