Skip to content

Commit

Permalink
fix(ms-adal): use correct accessTokenType prop (#3128)
Browse files Browse the repository at this point in the history
Removed a typo, which made the Access Token Type undefined all the time.
  • Loading branch information
BultjerCMC authored and danielsogl committed Aug 9, 2019
1 parent 852df98 commit 016023a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/@ionic-native/plugins/ms-adal/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { CordovaInstance, InstanceProperty, IonicNativePlugin, Plugin, checkAvai

export interface AuthenticationResult {
accessToken: string;
accesSTokenType: string;
accessTokenType: string;
expiresOn: Date;
idToken: string;
isMultipleResourceRefreshToken: boolean;
Expand Down

0 comments on commit 016023a

Please sign in to comment.