@azure/msal-browser
Version:
Microsoft Authentication Library for js
14 lines • 544 B
TypeScript
import { BrowserConfiguration, Configuration } from "../../config/Configuration.js";
export type CustomAuthOptions = {
challengeTypes?: Array<string>;
authApiProxyUrl: string;
customAuthApiQueryParams?: Record<string, string>;
capabilities?: Array<string>;
};
export type CustomAuthConfiguration = Configuration & {
customAuth: CustomAuthOptions;
};
export type CustomAuthBrowserConfiguration = BrowserConfiguration & {
customAuth: CustomAuthOptions;
};
//# sourceMappingURL=CustomAuthConfiguration.d.ts.map