mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-19 16:52:53 +08:00
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:
parent
852df98647
commit
016023a7bb
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user