You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// @ts-expect-error - TypeScript does not recognize this until we use ES2022 as the target; however, all our major runtimes do support the `cause` property
79
+
// @ts-ignore - TypeScript does not recognize this until we use ES2022 as the target; however, all our major runtimes do support the `cause` property
80
80
super(message,options);
81
81
this.name=CredentialUnavailableErrorName;
82
82
}
@@ -143,7 +143,7 @@ export class AuthenticationError extends Error {
143
143
144
144
super(
145
145
`${errorResponse.error} Status code: ${statusCode}\nMore details:\n${errorResponse.errorDescription},`,
146
-
// @ts-expect-error - TypeScript does not recognize this until we use ES2022 as the target; however, all our major runtimes do support the `cause` property
146
+
// @ts-ignore - TypeScript does not recognize this until we use ES2022 as the target; however, all our major runtimes do support the `cause` property
147
147
options,
148
148
);
149
149
this.statusCode=statusCode;
@@ -234,7 +234,7 @@ export class AuthenticationRequiredError extends Error {
234
234
){
235
235
super(
236
236
options.message,
237
-
// @ts-expect-error - TypeScript does not recognize this until we use ES2022 as the target; however, all our major runtimes do support the `cause` property
237
+
// @ts-ignore - TypeScript does not recognize this until we use ES2022 as the target; however, all our major runtimes do support the `cause` property
0 commit comments