16 lines
404 B
TypeScript
Executable file
16 lines
404 B
TypeScript
Executable file
/*
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License.
|
|
*/
|
|
|
|
import {
|
|
AuthorizationCodeClient,
|
|
ClientConfiguration,
|
|
} from "@azure/msal-common/browser";
|
|
|
|
export class HybridSpaAuthorizationCodeClient extends AuthorizationCodeClient {
|
|
constructor(config: ClientConfiguration) {
|
|
super(config);
|
|
this.includeRedirectUri = false;
|
|
}
|
|
}
|