UNPKG

@azure/msal-browser

Version:
17 lines (14 loc) 404 B
/* * 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; } }