-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
Copy pathpublic-api.ts
35 lines (33 loc) · 1.04 KB
/
public-api.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* @packageDocumentation
* @module @azure/msal-angular
*/
export { MsalService } from "./msal.service";
export { IMsalService } from "./IMsalService";
export { MsalGuard } from "./msal.guard";
export {
MsalGuardConfiguration,
MsalGuardAuthRequest,
} from "./msal.guard.config";
export { MsalInterceptor } from "./msal.interceptor";
export {
MsalInterceptorConfiguration,
MsalInterceptorAuthRequest,
ProtectedResourceScopes,
} from "./msal.interceptor.config";
export {
MSAL_INSTANCE,
MSAL_GUARD_CONFIG,
MSAL_INTERCEPTOR_CONFIG,
MSAL_BROADCAST_CONFIG,
} from "./constants";
export { MsalBroadcastService } from "./msal.broadcast.service";
export { MsalBroadcastConfiguration } from "./msal.broadcast.config";
export { MsalModule } from "./msal.module";
export { MsalRedirectComponent } from "./msal.redirect.component";
export { MsalCustomNavigationClient } from "./msal.navigation.client";
export { version } from "./packageMetadata";