semblance-dev/node_modules/@azure/msal-browser/dist/custom_auth/configuration/CustomAuthConfiguration.d.ts
2025-12-19 19:26:16 +00:00

12 lines
No EOL
453 B
TypeScript
Executable file

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;
};
//# sourceMappingURL=CustomAuthConfiguration.d.ts.map