Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sadasant authored Sep 1, 2021
1 parent 42c5016 commit 1cfb8ca
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ export class StaticTokenCredential implements TokenCredential {
* @param scopes - The list of scopes for which the token will have access.
* @param options - The options used to configure any requests this TokenCredential implementation might make.
*/
public async getToken(_scopes: string | string[], _options?: GetTokenOptions) {
public async getToken(
_scopes: string | string[],
_options?: GetTokenOptions
): Promise<AccessToken> {
return this.accessToken;
}
}

0 comments on commit 1cfb8ca

Please sign in to comment.