Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/CustomAuthenticationProvider.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class MyAuthenticationProvider implements AuthenticationProvider {
* This should return a Promise that resolves to an accessToken (in case of success) or rejects with error (in case of failure)
* Basically this method will contain the implementation for getting and refreshing accessTokens
*/
public async getAccessToken(): Promise<any> {}
public async getAccessToken(): Promise<string> {}
}
```

Expand Down