semblance/node_modules/@azure/msal-react/dist/error/ReactAuthError.d.ts
2025-12-19 19:26:16 +00:00

16 lines
535 B
TypeScript
Executable file

import { AuthError } from "@azure/msal-browser";
export declare const ReactAuthErrorMessage: {
invalidInteractionType: {
code: string;
desc: string;
};
unableToFallbackToInteraction: {
code: string;
desc: string;
};
};
export declare class ReactAuthError extends AuthError {
constructor(errorCode: string, errorMessage?: string);
static createInvalidInteractionTypeError(): ReactAuthError;
static createUnableToFallbackToInteractionError(): ReactAuthError;
}