mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Definitions for ADAL.JS
This commit is contained in:
Vendored
+40
@@ -0,0 +1,40 @@
|
||||
// Type definitions for Active Directory Authentication Library (ADAL) for JavaScript 1.0.8
|
||||
// Project: https://github.com/AzureAD/azure-activedirectory-library-for-js
|
||||
// Definitions by: mmaitre314 <https://github.com/mmaitre314>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
|
||||
/// <reference path="adal.d.ts" />
|
||||
/// <reference path="../angularjs/angular.d.ts" />
|
||||
|
||||
declare namespace adal {
|
||||
|
||||
interface AdalAuthenticationServiceProvider {
|
||||
init(configOptions: Config, httpProvider: angular.IHttpProvider): void;
|
||||
}
|
||||
|
||||
interface UserInfo {
|
||||
isAuthenticated: boolean,
|
||||
userName: string,
|
||||
loginError: string,
|
||||
profile: any
|
||||
}
|
||||
|
||||
interface AdalAuthenticationService {
|
||||
|
||||
config: Config;
|
||||
userInfo: UserInfo,
|
||||
|
||||
login(): void;
|
||||
loginInProgress(): boolean;
|
||||
logOut(): void;
|
||||
getCachedToken(resource: string): string;
|
||||
acquireToken(resource: string): angular.IPromise<string>;
|
||||
getUser(): angular.IPromise<User>;
|
||||
getResourceForEndpoint(endpoint: string): string,
|
||||
clearCache(): void;
|
||||
clearCacheForResource(resource: string): void;
|
||||
info(message: string): void;
|
||||
verbose(message: string): void;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user