UNPKG

@azure/msal-browser

Version:
16 lines 683 B
import { BrowserConfiguration, Configuration } from "../../config/Configuration.js"; import { CustomAuthRequestInterceptor } from "./CustomAuthRequestInterceptor.js"; export type CustomAuthOptions = { challengeTypes?: Array<string>; authApiProxyUrl: string; customAuthApiQueryParams?: Record<string, string>; capabilities?: Array<string>; requestInterceptor?: CustomAuthRequestInterceptor; }; export type CustomAuthConfiguration = Configuration & { customAuth: CustomAuthOptions; }; export type CustomAuthBrowserConfiguration = BrowserConfiguration & { customAuth: CustomAuthOptions; }; //# sourceMappingURL=CustomAuthConfiguration.d.ts.map