@azure/msal-browser
Version:
Microsoft Authentication Library for js
23 lines (18 loc) • 505 B
text/typescript
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import {
BrowserConfiguration,
Configuration,
} from "../../config/Configuration.js";
export type CustomAuthOptions = {
challengeTypes?: Array<string>;
authApiProxyUrl: string;
};
export type CustomAuthConfiguration = Configuration & {
customAuth: CustomAuthOptions;
};
export type CustomAuthBrowserConfiguration = BrowserConfiguration & {
customAuth: CustomAuthOptions;
};