Skip to content

Commit 021a1fb

Browse files
author
Geoffrey Koros
committed
add index file to authentication/azureTokenCredentials and authentication/msal-browser paths
1 parent 076674d commit 021a1fb

File tree

5 files changed

+19
-3
lines changed

5 files changed

+19
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,6 @@ test/development/secrets.ts
3131
.idea/*
3232

3333
testResult.xml
34+
test-results.xml
3435

3536
test-esm/lib/*

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/microsoft-graph-client",
3-
"version": "3.0.0-Preview.3",
3+
"version": "3.0.0-Preview.4",
44
"description": "Microsoft Graph Client Library",
55
"keywords": [
66
"Microsoft",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
* -------------------------------------------------------------------------------------------
3+
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
4+
* See License in the project root for license information.
5+
* -------------------------------------------------------------------------------------------
6+
*/
7+
export { TokenCredentialAuthenticationProviderOptions } from "./ITokenCredentialAuthenticationProviderOptions";
8+
export { TokenCredentialAuthenticationProvider } from "./TokenCredentialAuthenticationProvider";
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* -------------------------------------------------------------------------------------------
3+
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
4+
* See License in the project root for license information.
5+
* -------------------------------------------------------------------------------------------
6+
*/
7+
export { AuthCodeMSALBrowserAuthenticationProvider } from "./AuthCodeMSALBrowserAuthenticationProvider";

0 commit comments

Comments
 (0)