fix(ms-adal): use correct accessTokenType prop (#3128)

Removed a typo, which made the Access Token Type undefined all the time.
This commit is contained in:
BultjerCMC 2019-08-09 11:06:38 +02:00 committed by Daniel Sogl
parent 852df98647
commit 016023a7bb

View File

@ -3,7 +3,7 @@ import { CordovaInstance, InstanceProperty, IonicNativePlugin, Plugin, checkAvai
export interface AuthenticationResult { export interface AuthenticationResult {
accessToken: string; accessToken: string;
accesSTokenType: string; accessTokenType: string;
expiresOn: Date; expiresOn: Date;
idToken: string; idToken: string;
isMultipleResourceRefreshToken: boolean; isMultipleResourceRefreshToken: boolean;