UNPKG

@azure/msal-browser

Version:
19 lines 947 B
import { UserAttribute } from "../network_client/custom_auth_api/types/ApiErrorResponseTypes.js"; import { CustomAuthError } from "./CustomAuthError.js"; /** * Error when no required authentication method by Microsoft Entra is supported */ export declare class RedirectError extends CustomAuthError { constructor(correlationId?: string); } /** * Custom Auth API error. */ export declare class CustomAuthApiError extends CustomAuthError { attributes?: UserAttribute[] | undefined; continuationToken?: string | undefined; traceId?: string | undefined; timestamp?: string | undefined; constructor(error: string, errorDescription: string, correlationId?: string, errorCodes?: Array<number>, subError?: string, attributes?: UserAttribute[] | undefined, continuationToken?: string | undefined, traceId?: string | undefined, timestamp?: string | undefined); } //# sourceMappingURL=CustomAuthApiError.d.ts.map