1 | import { ServerError } from "./ServerError";
|
2 | export declare const InteractionRequiredAuthErrorMessage: {
|
3 | interactionRequired: {
|
4 | code: string;
|
5 | };
|
6 | consentRequired: {
|
7 | code: string;
|
8 | };
|
9 | loginRequired: {
|
10 | code: string;
|
11 | };
|
12 | };
|
13 |
|
14 |
|
15 |
|
16 | export declare class InteractionRequiredAuthError extends ServerError {
|
17 | constructor(errorCode: string, errorMessage?: string);
|
18 | static isInteractionRequiredError(errorString: string): boolean;
|
19 | static createLoginRequiredAuthError(errorDesc: string): InteractionRequiredAuthError;
|
20 | static createInteractionRequiredAuthError(errorDesc: string): InteractionRequiredAuthError;
|
21 | static createConsentRequiredAuthError(errorDesc: string): InteractionRequiredAuthError;
|
22 | }
|