Files
PayDirt/node_modules/@azure/msal-browser/dist/custom_auth/configuration/CustomAuthConfiguration.d.ts

14 lines
531 B
TypeScript
Raw Normal View History

2025-11-12 10:13:24 -05:00
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