From c4e43a8af2cbe627a43f065107c88d65413fb1ad Mon Sep 17 00:00:00 2001 From: warreee Date: Tue, 19 Nov 2019 16:33:45 +0100 Subject: [PATCH] Updated the example to the correct return type --- docs/CustomAuthenticationProvider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CustomAuthenticationProvider.md b/docs/CustomAuthenticationProvider.md index 0b590b130..625adf944 100644 --- a/docs/CustomAuthenticationProvider.md +++ b/docs/CustomAuthenticationProvider.md @@ -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 {} + public async getAccessToken(): Promise {} } ```