UNPKG

ng2-adal

Version:

Use Azure AD Library - ADAL in Angular 4 & 2. For Angular 4, use latest version 1.x.x. For Angular 2 use 0.3.1 version.

29 lines (20 loc) 507 B
declare module 'adal-angular' { export function inject(config: adal.Config): adal.AuthenticationContext; } declare namespace adal { interface AuthenticationContext { REQUEST_TYPE: { LOGIN: string, RENEW_TOKEN: string, UNKNOWN: string }; callback : any; _getItem : any; _renewFailed : any; CONSTANTS : any; } } interface Window { AuthenticationContext : any; callBackMappedToRenewStates : any; }